You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2018/02/14 22:30:53 UTC

[cordova-windows] branch janpio-more_env_info_on_appveyor updated: better IF

This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch janpio-more_env_info_on_appveyor
in repository https://gitbox.apache.org/repos/asf/cordova-windows.git


The following commit(s) were added to refs/heads/janpio-more_env_info_on_appveyor by this push:
     new d71f9c9  better IF
d71f9c9 is described below

commit d71f9c9811fb43e3a187301d48dc9d3c7e0ff8a5
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Wed Feb 14 23:30:52 2018 +0100

    better IF
---
 appveyor.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml
index 98a3002..382664e 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -38,7 +38,7 @@ test_script:
   - npm --version
   - msbuild -version -nologo
   - where msbuild
-  - "if exist \"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere\" \"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere\" -property installationPath -products * -all"
-  - "if exist \"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere\" \"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere\" -property installationPath -all"
-  - "if exist \"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere\" \"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere\" -property installationPath -legacy"
+  - IF NOT EXIST "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" ( echo "no vswhere" ) ELSE "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -property installationPath -products * -all"
+  - IF NOT EXIST "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" ( echo "no vswhere" ) ELSE "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -property installationPath -all"
+  - IF NOT EXIST "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" ( echo "no vswhere" ) ELSE "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -property installationPath -legacy"
   - npm test

-- 
To stop receiving notification emails like this one, please contact
janpio@apache.org.

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org