From 6399dfbeca6a0e8609e2592d0fc94effc287da0e Mon Sep 17 00:00:00 2001 From: Patrick Ziegler <49288965+pziggo@users.noreply.github.com> Date: Thu, 5 Dec 2024 18:16:53 +0100 Subject: [PATCH] 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. --- infra/get_workspace_status.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/get_workspace_status.cmd b/infra/get_workspace_status.cmd index 51b29b6..c092a15 100644 --- a/infra/get_workspace_status.cmd +++ b/infra/get_workspace_status.cmd @@ -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