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:
parent
aca02c8311
commit
38d7bab73d
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue