diff --git a/build.ps1 b/build.ps1 index 268efee7fa..3adec7843c 100644 --- a/build.ps1 +++ b/build.ps1 @@ -31,15 +31,12 @@ Param( [string[]]$ScriptArgs ) -$CakeVersion = "0.24.0" +$CakeVersion = "0.25.0" $DotNetChannel = "Current"; $DotNetVersion = "1.1.7"; $DotNetInstallerUri = "https://dot.net/v1/dotnet-install.ps1"; $NugetUrl = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -# Temporarily skip verification and opt-in to new in-proc NuGet -$ENV:CAKE_NUGET_USEINPROCESSCLIENT='true' - # Make sure tools folder exists $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent $ToolPath = Join-Path $PSScriptRoot "tools" diff --git a/build.sh b/build.sh index cbc2473d2d..7395496f48 100755 --- a/build.sh +++ b/build.sh @@ -10,12 +10,9 @@ SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) TOOLS_DIR=$SCRIPT_DIR/tools NUGET_EXE=$TOOLS_DIR/nuget.exe NUGET_URL=https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -CAKE_VERSION=0.24.0 +CAKE_VERSION=0.25.0 CAKE_EXE=$TOOLS_DIR/Cake.$CAKE_VERSION/Cake.exe -# Temporarily skip verification and opt-in to new in-proc NuGet -export CAKE_NUGET_USEINPROCESSCLIENT="true" - # Define default arguments. TARGET="Travis" CONFIGURATION="Release"