Skip to content

Commit f2b7577

Browse files
committed
Fixed NUnit paths in Nuget install script.
1 parent 99902c7 commit f2b7577

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build/InstallNugets.sh

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

0 commit comments

Comments
 (0)