| Index: third_party/grpc/tools/run_tests/pre_build_c.bat
|
| diff --git a/third_party/grpc/tools/run_tests/pre_build_c.bat b/third_party/grpc/tools/run_tests/pre_build_c.bat
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..f0449f3c424af08e7a2c01ed2f215fc4033db451
|
| --- /dev/null
|
| +++ b/third_party/grpc/tools/run_tests/pre_build_c.bat
|
| @@ -0,0 +1,21 @@
|
| +@rem Performs nuget restore step for C/C++.
|
| +
|
| +setlocal
|
| +
|
| +@rem enter repo root
|
| +cd /d %~dp0\..\..
|
| +
|
| +@rem Location of nuget.exe
|
| +set NUGET=C:\nuget\nuget.exe
|
| +
|
| +if exist %NUGET% (
|
| + %NUGET% restore vsprojects/grpc.sln || goto :error
|
| +)
|
| +
|
| +endlocal
|
| +
|
| +goto :EOF
|
| +
|
| +:error
|
| +echo Failed!
|
| +exit /b %errorlevel%
|
|
|