Skip to content

Commit 745f5fc

Browse files
committed
Fixed the path to the new NUnit in the build scripts.
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent e7f9b29 commit 745f5fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build/InstallNugets.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ wget https://nuget.org/nuget.exe
22
BUILD_DIR=$(dirname -- $0)
33
mono nuget.exe install NUnit -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps
44
mono nuget.exe install NUnit.Runners -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps
5-
cp $BUILD_DIR/../deps/NUnit.3.6.0/lib/nunit.framework.* $BUILD_DIR/../deps/NUnit
5+
ls -d $BUILD_DIR/../deps/*/
6+
cp $BUILD_DIR/../deps/NUnit/lib/net45/nunit.framework.* $BUILD_DIR/../deps/NUnit

0 commit comments

Comments
 (0)