Skip to content

Commit

Permalink
(build) Updated Cake tool to version 0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Jan 17, 2018
1 parent adea508 commit e86afcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 1 addition & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit e86afcf

Please sign in to comment.