Browse Source

Fixed NUnit paths in Nuget install script.

pull/729/merge
Joao Matos 9 years ago
parent
commit
f2b7577b03
  1. 7
      build/InstallNugets.sh

7
build/InstallNugets.sh

@ -1,4 +1,5 @@
wget https://nuget.org/nuget.exe wget https://nuget.org/nuget.exe
mono nuget.exe install NUnit -Version 2.6.4 -OutputDirectory ../deps BUILD_DIR=$(dirname -- $0)
mono nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDirectory ../deps mono nuget.exe install NUnit -Version 2.6.4 -OutputDirectory $BUILD_DIR/../deps
cp ../deps/NUnit.2.6.4/lib/nunit.framework.* deps/NUnit/ mono nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDirectory $BUILD_DIR/../deps
cp $BUILD_DIR/../deps/NUnit.2.6.4/lib/nunit.framework.* $BUILD_DIR/../deps/NUnit

Loading…
Cancel
Save