From 7c232b133110bbbe1fb0939079a8157b2a237ad2 Mon Sep 17 00:00:00 2001 From: Romain LE JEUNE Date: Thu, 9 Mar 2023 14:50:34 +0100 Subject: [PATCH] fix(GODT-2469): Fix sentry revision hash for cmake on windows. --- internal/frontend/bridge-gui/bridge-gui/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/frontend/bridge-gui/bridge-gui/build.ps1 b/internal/frontend/bridge-gui/bridge-gui/build.ps1 index 004b1a54..1549e272 100644 --- a/internal/frontend/bridge-gui/bridge-gui/build.ps1 +++ b/internal/frontend/bridge-gui/bridge-gui/build.ps1 @@ -92,7 +92,7 @@ git submodule update --init --recursive $vcpkgRoot . $cmakeExe -G "Visual Studio 17 2022" -DCMAKE_BUILD_TYPE="$buildConfig" ` -DBRIDGE_APP_FULL_NAME="$bridgeFullName" ` -DBRIDGE_VENDOR="$bridgeVendor" ` - -DBRIDGE_REVISION=$REVISION_HASH ` + -DBRIDGE_REVISION="$REVISION_HASH" ` -DBRIDGE_APP_VERSION="$bridgeVersion" ` -DBRIDGE_BUILD_TIME="$bridgeBuidTime" ` -DBRIDGE_DSN_SENTRY="$bridgeDsnSentry" `