From 0b90d254f96a8ee55b577b80f8c9504bd510a507 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Sun, 2 Feb 2020 02:53:18 +0300 Subject: [PATCH] Try another approach in echo'ing --- .appveyor.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index f15d85d14..5440a346d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,19 +24,19 @@ install: Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { ` throw "There are newer queued builds for this pull request, failing early." } - - ECHO OS version: + - cmd: echo "OS version:" - ps: "[System.Environment]::OSVersion.Version" - - ECHO Filesystem root: + - cmd: echo "Filesystem root:" - ps: "ls \"C:\\\"" - - ECHO Filesystem projects root: + - cmd: echo "Filesystem projects root:" - ps: "ls \"C:\\projects\\\"" - - ECHO Filesystem pyfa root: + - cmd: echo "Filesystem pyfa root:" - ps: "ls \"C:\\projects\\$env:APPVEYOR_PROJECT_SLUG\\\"" - - ECHO Installed SDKs: + - cmd: echo "Installed SDKs:" - ps: "ls \"C:\\Program Files (x86)\\Windows Kits\\\"" # Prepend newly installed Python to the PATH of this build (this cannot be @@ -55,7 +55,7 @@ install: # compiled extensions and are not provided as pre-built wheel packages, # pip will build them from source using the MSVC compiler matching the # target Python version and architecture - - ECHO "Install pip requirements:" + - cmd: echo "Install pip requirements:" - "python -m pip install -r requirements.txt" - "python -m pip install PyInstaller==3.6" @@ -67,7 +67,7 @@ before_build: - ps: echo ($env:PYFA_VERSION) build_script: - - ECHO "Build pyfa:" + - cmd: echo "Build pyfa:" # Build gamedata DB - "python db_update.py"