Skip to content

Commit

Permalink
Fix build info for windows binary (#62)
Browse files Browse the repository at this point in the history
Putting the build status string into quotes won't match the check and
thus never report a clean / official build.
  • Loading branch information
pziggo authored Dec 5, 2024
1 parent ca09d1e commit 6399dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/get_workspace_status.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ echo STABLE_BUILD_RELEASE_VERSION %BUILD_RELEASE_VERSION%

git diff-index --quiet HEAD --
if %ERRORLEVEL% == 0 (
echo BUILD_SCM_STATUS "clean"
echo BUILD_SCM_STATUS clean
) else (
echo BUILD_SCM_STATUS "modified"
echo BUILD_SCM_STATUS modified
)

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

0 comments on commit 6399dfb

Please sign in to comment.