File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ set DOTNET_NOLOGO=1
88dotnet tool restore
99@ if %ERRORLEVEL% neq 0 goto :eof
1010
11- dotnet cake --verbosity=diagnostic %*
11+ dotnet cake %*
Original file line number Diff line number Diff line change 1+ $ErrorActionPreference = ' Stop'
2+
3+ Set-Location - LiteralPath $PSScriptRoot
4+
5+ $env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE = ' 1'
6+ $env: DOTNET_CLI_TELEMETRY_OPTOUT = ' 1'
7+ $env: DOTNET_NOLOGO = ' 1'
8+
9+ dotnet tool restore
10+ if ($LASTEXITCODE -ne 0 ) { exit $LASTEXITCODE }
11+
12+ dotnet cake build.cake @args
13+ if ($LASTEXITCODE -ne 0 ) { exit $LASTEXITCODE }
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -euox pipefail
33
4+ cd " $( dirname " ${BASH_SOURCE[0]} " ) "
5+
46export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
57export DOTNET_CLI_TELEMETRY_OPTOUT=1
68export DOTNET_NOLOGO=1
79
810dotnet tool restore
911
10- dotnet cake --verbosity=diagnostic $@
12+ dotnet cake $@
You can’t perform that action at this time.
0 commit comments