Skip to content

Commit 6399dfb

Browse files
authored
Fix build info for windows binary (#62)
Putting the build status string into quotes won't match the check and thus never report a clean / official build.
1 parent ca09d1e commit 6399dfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

infra/get_workspace_status.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ echo STABLE_BUILD_RELEASE_VERSION %BUILD_RELEASE_VERSION%
2828

2929
git diff-index --quiet HEAD --
3030
if %ERRORLEVEL% == 0 (
31-
echo BUILD_SCM_STATUS "clean"
31+
echo BUILD_SCM_STATUS clean
3232
) else (
33-
echo BUILD_SCM_STATUS "modified"
33+
echo BUILD_SCM_STATUS modified
3434
)
3535

3636
for /F %%x in ('git remote get-url origin') do set REMOTE_URL=%%x

0 commit comments

Comments
 (0)