From 38d7bab73d27862f040e1111de838ac358ef41ba Mon Sep 17 00:00:00 2001 From: moozzyk Date: Tue, 23 Feb 2016 12:56:12 -0800 Subject: [PATCH] Removing -pre as it causes test failures due to version mismatch between what the build runs vs what project references Also removing for Sake since it is not needed --- KoreBuild-dotnet/build/KoreBuild.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/KoreBuild-dotnet/build/KoreBuild.sh b/KoreBuild-dotnet/build/KoreBuild.sh index b51fbb43ce..79fffb88ff 100755 --- a/KoreBuild-dotnet/build/KoreBuild.sh +++ b/KoreBuild-dotnet/build/KoreBuild.sh @@ -42,13 +42,13 @@ thisDir="$( cd -P "$( dirname "$SOURCE" )" && pwd )" sakeFolder=$thisDir/Sake if [ ! -d $sakeFolder ]; then - mono $nugetPath install Sake -ExcludeVersion -o $thisDir -nocache -pre + mono $nugetPath install Sake -ExcludeVersion -o $thisDir -nocache fi if [ ! -d $thisDir/xunit.runner.console ]; then - mono $nugetPath install xunit.runner.console -ExcludeVersion -o $thisDir -nocache -pre + mono $nugetPath install xunit.runner.console -ExcludeVersion -o $thisDir -nocache fi if [ ! -d $thisDir/xunit.core ]; then - mono $nugetPath install xunit.core -ExcludeVersion -o $thisDir -nocache -pre + mono $nugetPath install xunit.core -ExcludeVersion -o $thisDir -nocache fi if [ ! -z "$KOREBUILD_SKIP_RUNTIME_INSTALL" ]; then