Skip to content

Commit

Permalink
Removed needless copying of NUnit libraries.
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitar Dobrev <[email protected]>
  • Loading branch information
ddobrev committed Feb 18, 2017
1 parent 745f5fc commit 7664bb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions build/InstallNugets.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
wget https://nuget.org/nuget.exe
BUILD_DIR=$(dirname -- $0)
mono nuget.exe install NUnit -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps
mono nuget.exe install NUnit.Runners -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps
ls -d $BUILD_DIR/../deps/*/
cp $BUILD_DIR/../deps/NUnit/lib/net45/nunit.framework.* $BUILD_DIR/../deps/NUnit
mono nuget.exe install NUnit.ConsoleRunner -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps
4 changes: 2 additions & 2 deletions build/RunTests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set -e
BUILD_DIR=$(dirname -- $0)
MONO_PATH=$BUILD_DIR/../deps/NUnit.Runners.2.6.4/tools \
mono $BUILD_DIR/../deps/NUnit.Runners.2.6.4/tools/nunit-console.exe -nologo -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll
MONO_PATH=$BUILD_DIR/../deps/NUnit.Runners.3.6.0/tools \
mono $BUILD_DIR/../deps/NUnit.Runners.3.6.0/tools/nunit-console.exe -nologo -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll

0 comments on commit 7664bb3

Please sign in to comment.