fix(desktop): correctly parse release rename flag
This commit is contained in:
parent
0a7cc2b7df
commit
7d1010193d
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in New Issue