mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-26 00:41:11 -06:00
Fix script issue - Windows (#1955)
This commit is contained in:
parent
77c9abdf7a
commit
881df90d46
@ -21,11 +21,7 @@ function generateChannelsFiles(srcFile) {
|
||||
const targetedAutoUpdateChannels = ['stable', 'beta', 'iv', 'daily'];
|
||||
for (const channel of targetedAutoUpdateChannels) {
|
||||
const updatedFileName = srcFile.replace('latest', channel);
|
||||
fs.copyFileSync(
|
||||
yamlFilePath,
|
||||
updatedFileName,
|
||||
fs.constants.COPYFILE_FICLONE_FORCE,
|
||||
);
|
||||
fs.copyFileSync(srcFile, updatedFileName);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user