Skip to content

Commit 6ddaa9d

Browse files
authored
Remove wrong quotes from helix.cmd (#36129)
When setting an env var in Windows .cmd it shouldn't be enclosed in quotes, otherwise the quotes will be part of the variable value.
1 parent 14c5782 commit 6ddaa9d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

helix.cmd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
:: This command sends helix test job from local machine
44

55
SET DOTNET_ROOT=%~dp0.dotnet\
6-
SET BUILD_SOURCEBRANCH="main"
7-
SET BUILD_REPOSITORY_NAME="efcore"
8-
SET SYSTEM_TEAMPROJECT="public"
9-
SET BUILD_REASON="test"
6+
SET BUILD_SOURCEBRANCH=main
7+
SET BUILD_REPOSITORY_NAME=efcore
8+
SET SYSTEM_TEAMPROJECT=public
9+
SET BUILD_REASON=test
1010

1111
IF NOT EXIST "%DOTNET_ROOT%\dotnet.exe" (
1212
call dotnet msbuild eng\helix.proj /restore /t:Test %*
1313
) ELSE (
1414
call %DOTNET_ROOT%\dotnet.exe msbuild eng\helix.proj /restore /t:Test %*
15-
)
15+
)

0 commit comments

Comments
 (0)