Skip to content

Commit 5ec4d1a

Browse files
committed
Removed needless copying of NUnit libraries.
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent 745f5fc commit 5ec4d1a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

build/InstallNugets.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
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
4-
mono nuget.exe install NUnit.Runners -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps
5-
ls -d $BUILD_DIR/../deps/*/
6-
cp $BUILD_DIR/../deps/NUnit/lib/net45/nunit.framework.* $BUILD_DIR/../deps/NUnit
4+
mono nuget.exe install NUnit.Runners -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps

build/RunTests.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
set -e
22
BUILD_DIR=$(dirname -- $0)
3-
MONO_PATH=$BUILD_DIR/../deps/NUnit.Runners.2.6.4/tools \
4-
mono $BUILD_DIR/../deps/NUnit.Runners.2.6.4/tools/nunit-console.exe -nologo -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll
3+
MONO_PATH=$BUILD_DIR/../deps/NUnit.Runners.3.6.0/tools \
4+
mono $BUILD_DIR/../deps/NUnit.Runners.3.6.0/tools/nunit-console.exe -nologo -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll

0 commit comments

Comments
 (0)