Skip to content

Commit

Permalink
Fixed NUnit paths in Nuget install script.
Browse files Browse the repository at this point in the history
  • Loading branch information
tritao committed Feb 6, 2017
1 parent 99902c7 commit f2b7577
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build/InstallNugets.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
wget https://nuget.org/nuget.exe
mono nuget.exe install NUnit -Version 2.6.4 -OutputDirectory ../deps
mono nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDirectory ../deps
cp ../deps/NUnit.2.6.4/lib/nunit.framework.* deps/NUnit/
BUILD_DIR=$(dirname -- $0)
mono nuget.exe install NUnit -Version 2.6.4 -OutputDirectory $BUILD_DIR/../deps
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

0 comments on commit f2b7577

Please sign in to comment.