diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-01-22 20:47:42 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-01-22 20:47:42 -0800 |
commit | b92cb5959e89e09c62f256c25de67df88499e53c (patch) | |
tree | ac941b4f94085e2b796b7a6a309e11c5ebc1ac72 /tools | |
parent | 4746ce8962bfbe80b4e7922d3baed353298162c6 (diff) |
Run nuget restore on mac as well
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/pre_build_csharp.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/run_tests/pre_build_csharp.sh b/tools/run_tests/pre_build_csharp.sh index 42ff60bea2..06c8a83071 100755 --- a/tools/run_tests/pre_build_csharp.sh +++ b/tools/run_tests/pre_build_csharp.sh @@ -35,6 +35,11 @@ cd $(dirname $0)/../../src/csharp root=`pwd` +if [ -x "$(command -v nuget)" ] +then + nuget restore Grpc.sln +fi + if [ -n "$NUGET" ] then $NUGET restore Grpc.sln |