fix if exist syntax in .bat files

pull/3734/head
Jan Tattermusch 9 years ago
parent 874aec02b4
commit 6438cfcaf2
  1. 2
      tools/run_tests/pre_build_c.bat
  2. 2
      tools/run_tests/pre_build_csharp.bat

@ -8,7 +8,7 @@ cd /d %~dp0\..\..
@rem Location of nuget.exe
set NUGET=C:\nuget\nuget.exe
if exists %NUGET% (
if exist %NUGET% (
%NUGET% restore vsprojects/grpc.sln || goto :error
)

@ -8,7 +8,7 @@ cd /d %~dp0\..\..
@rem Location of nuget.exe
set NUGET=C:\nuget\nuget.exe
if exists %NUGET% (
if exist %NUGET% (
%NUGET% restore vsprojects/grpc_csharp_ext.sln || goto :error
%NUGET% restore src/csharp/Grpc.sln || goto :error
)

Loading…
Cancel
Save