From 39f36f273b55eac7d9927e97d4f0ade9a9f7363f Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 8 May 2019 18:26:35 -0700 Subject: [PATCH] Visual Studio Projects: Fix build test script for newer Visual Studio versions As reported and suggested in #700 --- Visual Studio Projects/Post-Build-Event.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Visual Studio Projects/Post-Build-Event.cmd b/Visual Studio Projects/Post-Build-Event.cmd index 9dfaee6e..5bedad51 100644 --- a/Visual Studio Projects/Post-Build-Event.cmd +++ b/Visual Studio Projects/Post-Build-Event.cmd @@ -12,7 +12,7 @@ rem 4 Optional parameters to invoke the specified script with rem rem -if exist "%2" goto _check_script +if exist %2 goto _check_script echo error: Missing simulator binary: %2 exit /B 1 @@ -26,4 +26,4 @@ echo No tests found for %_binary_name% simulator. exit /B 0 :_got_script -"%2" "%_script_path%" "%4" +%2 "%_script_path%" "%4"