From 4441b38228433dd76b32701bd571ce052cb363c5 Mon Sep 17 00:00:00 2001 From: FrancisANDRE Date: Tue, 8 Mar 2016 12:32:17 +0100 Subject: [PATCH] PowerShell false constant is False and not false! Signed-off-by: FrancisANDRE --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 259599660..cc62f59b6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,8 +26,8 @@ services: platform: - - x64 - Win32 + - x64 # ------------------------------------------------------------------------------------------- # building debug configuration doubles the round time and isn't so useful. @@ -157,7 +157,7 @@ install: - ps: | if ($env:platform -eq "Win32") { - if (Test-Path "c:\mysql-5.7.9-win32" -and false) { + if (Test-Path "c:\mysql-5.7.9-win32" -and False) { echo "using c:\mysql-5.7.9-win32 from cache" } else