fix(desktop): correctly parse release rename flag

This commit is contained in:
kolaente 2025-08-17 21:16:47 +02:00
parent 0a7cc2b7df
commit 7d1010193d
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -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')