Skip to content

Commit 31b0949

Browse files
authored
Fix env vars for helix
1 parent 6140821 commit 31b0949

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eng/helix/vstest/runtests.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ set runtimeVersion=%3
44
powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; &([scriptblock]::Create((Invoke-WebRequest -useb 'https://dot.net/v1/dotnet-install.ps1'))) -Version %sdkVersion% -InstallDir %HELIX_CORRELATION_PAYLOAD%\sdk"
55
powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; &([scriptblock]::Create((Invoke-WebRequest -useb 'https://dot.net/v1/dotnet-install.ps1'))) -Runtime dotnet -Version %runtimeVersion% -InstallDir %HELIX_CORRELATION_PAYLOAD%\sdk"
66
set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
7-
set DOTNET_ROOT="$HELIX_CORRELATION_PAYLOAD/sdk"
8-
set PATH="$DOTNET_ROOT:$PATH"
7+
set DOTNET_ROOT=%HELIX_CORRELATION_PAYLOAD%/sdk
8+
set PATH=$DOTNET_ROOT:$PATH
99
set DOTNET_MULTILEVEL_LOOKUP=0
10-
set DOTNET_CLI_HOME="$HELIX_CORRELATION_PAYLOAD/home"
10+
set DOTNET_CLI_HOME=%HELIX_CORRELATION_PAYLOAD%/home
1111
set helix=true
1212
%HELIX_CORRELATION_PAYLOAD%\sdk\dotnet vstest %target% --logger:trx
1313

0 commit comments

Comments
 (0)