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
8
8
dotnet tool restore
9
9
@ if %ERRORLEVEL% neq 0 goto :eof
10
10
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 1
1
#! /usr/bin/env bash
2
2
set -euox pipefail
3
3
4
+ cd " $( dirname " ${BASH_SOURCE[0]} " ) "
5
+
4
6
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
5
7
export DOTNET_CLI_TELEMETRY_OPTOUT=1
6
8
export DOTNET_NOLOGO=1
7
9
8
10
dotnet tool restore
9
11
10
- dotnet cake --verbosity=diagnostic $@
12
+ dotnet cake $@
You can’t perform that action at this time.
0 commit comments