mirror of
https://gitea.com/actions/setup-java.git
synced 2025-04-06 07:19:39 +00:00
code == EEXIST
This commit is contained in:
3
dist/index.js
generated
vendored
3
dist/index.js
generated
vendored
@ -4170,12 +4170,11 @@ function write(directory, settings) {
|
||||
return fs.writeFileSync(location, settings, options);
|
||||
}
|
||||
catch (e) {
|
||||
if (e.code == fs.constants.O_EXCL) {
|
||||
if (e.code == "EEXIST") {
|
||||
console.log(`overwriting existing file ${location}`);
|
||||
// default flag is 'w'
|
||||
return fs.writeFileSync(location, settings, { encoding: 'utf-8' });
|
||||
}
|
||||
console.log(`error ${JSON.stringify(e)} and O_EXCL ${fs.constants.O_EXCL}`);
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user