From 7d1010193d5d16266c5512d0c6182211178400aa Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 17 Aug 2025 21:16:47 +0200 Subject: [PATCH] fix(desktop): correctly parse release rename flag --- desktop/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/build.js b/desktop/build.js index d0e6f3b77..8bdf92b2c 100644 --- a/desktop/build.js +++ b/desktop/build.js @@ -74,7 +74,7 @@ async function main() { } const versionPlaceholder = args[0] - const renameDistFiles = args[1] || false + const renameDistFiles = args[1] === 'true' || false const frontendSourceDir = path.resolve(__dirname, '../frontend/dist') const frontendDir = path.resolve(__dirname, 'frontend') const indexFilePath = path.join(frontendDir, 'index.html')