mirror of
https://github.com/actions/setup-java.git
synced 2024-11-06 00:55:54 -05:00
Be explicit about second flag
This commit is contained in:
parent
5e29577d7b
commit
8940139ee8
1 changed files with 2 additions and 3 deletions
|
@ -50,9 +50,8 @@ async function write(directory: string, settings: string) {
|
|||
return fs.writeFileSync(location, settings, options);
|
||||
} catch (e) {
|
||||
if (e.code == "EEXIST") {
|
||||
console.log(`overwriting existing file ${location}`);
|
||||
// default flag is 'w'
|
||||
return fs.writeFileSync(location, settings, {encoding: 'utf-8'});
|
||||
console.warn(`overwriting existing file ${location}`);
|
||||
return fs.writeFileSync(location, settings, {encoding: 'utf-8', flag: 'w'});
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue