1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-13 15:27:46 +00:00

Visual Studio Projects: Fix build test script for newer Visual Studio versions

As reported and suggested in #700
This commit is contained in:
Mark Pizzolato 2019-05-08 18:26:35 -07:00
parent b1f3441f7f
commit 39f36f273b

View File

@ -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"