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
This commit is contained in:
moozzyk 2016-02-23 12:56:12 -08:00
parent aca02c8311
commit 38d7bab73d
1 changed files with 3 additions and 3 deletions

View File

@ -42,13 +42,13 @@ thisDir="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
sakeFolder=$thisDir/Sake sakeFolder=$thisDir/Sake
if [ ! -d $sakeFolder ]; then if [ ! -d $sakeFolder ]; then
mono $nugetPath install Sake -ExcludeVersion -o $thisDir -nocache -pre mono $nugetPath install Sake -ExcludeVersion -o $thisDir -nocache
fi fi
if [ ! -d $thisDir/xunit.runner.console ]; then 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 fi
if [ ! -d $thisDir/xunit.core ]; then 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 fi
if [ ! -z "$KOREBUILD_SKIP_RUNTIME_INSTALL" ]; then if [ ! -z "$KOREBUILD_SKIP_RUNTIME_INSTALL" ]; then