mirror of
https://github.com/go-vikunja/vikunja.git
synced 2025-12-05 19:16:51 -06:00
fix(desktop): correctly parse release rename flag
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user