From d7f8761771a75f86fdbdcd940e705d16f0e11be4 Mon Sep 17 00:00:00 2001 From: FrancisANDRE Date: Tue, 8 Mar 2016 12:39:52 +0100 Subject: [PATCH] missing parenthesis on Test-Path. Signed-off-by: FrancisANDRE --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index cc62f59b6..86c3ee3b9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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