From 745f5fc8ea655197c8b79fda580346db8cd4a0f4 Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Sat, 18 Feb 2017 13:59:50 +0200 Subject: [PATCH] Fixed the path to the new NUnit in the build scripts. Signed-off-by: Dimitar Dobrev --- build/InstallNugets.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/InstallNugets.sh b/build/InstallNugets.sh index 249ef1e9..a7b7ece6 100755 --- a/build/InstallNugets.sh +++ b/build/InstallNugets.sh @@ -2,4 +2,5 @@ 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 -cp $BUILD_DIR/../deps/NUnit.3.6.0/lib/nunit.framework.* $BUILD_DIR/../deps/NUnit +ls -d $BUILD_DIR/../deps/*/ +cp $BUILD_DIR/../deps/NUnit/lib/net45/nunit.framework.* $BUILD_DIR/../deps/NUnit