From 1ba5fbff23754f99ec36340012ad2188b4f78209 Mon Sep 17 00:00:00 2001 From: Alissa Rao Date: Mon, 18 Dec 2023 14:41:24 -0800 Subject: [PATCH] Github Actions: Try to fix compilation issue. --- scripts/ci/build-installer_win32.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/build-installer_win32.ps1 b/scripts/ci/build-installer_win32.ps1 index b0075b1..b413638 100644 --- a/scripts/ci/build-installer_win32.ps1 +++ b/scripts/ci/build-installer_win32.ps1 @@ -23,7 +23,7 @@ if (-Not(Test-Path "target/rcedit.exe" -PathType Leaf)) { } # Find the current version -$VERSION = "$( sbt "print version" --error )".Trim() +$VERSION = "$( sbt "print version" --error )".Trim().Replace(" ", "") $FILE_VERSION = "$VERSION".Split("-")[0] $FILE_VERSION = "$FILE_VERSION.$( git rev-list HEAD --count )" $INSTALLER_NAME = "MPPatch-Installer_win32_$VERSION.exe"