1
0
Fork 0
mirror of https://github.com/actions/setup-java.git synced 2024-08-16 10:19:51 +02:00

return but shoudl still fail

This commit is contained in:
Bryan Clark 2019-12-05 00:43:41 -05:00
parent 12896dfb0f
commit 96236d7072
2 changed files with 2 additions and 2 deletions

2
dist/index.js generated vendored
View file

@ -4167,7 +4167,7 @@ function write(directory, settings) {
const location = path.join(directory, exports.SETTINGS_FILE); const location = path.join(directory, exports.SETTINGS_FILE);
console.log(`writing ${location} with options ${options}`); console.log(`writing ${location} with options ${options}`);
try { try {
fs.writeFileSync(location, settings, options); return fs.writeFileSync(location, settings, options);
} }
catch (e) { catch (e) {
if (e.code == fs.constants.O_EXCL) { if (e.code == fs.constants.O_EXCL) {

View file

@ -48,7 +48,7 @@ async function write(directory: string, settings: string) {
const location = path.join(directory, SETTINGS_FILE); const location = path.join(directory, SETTINGS_FILE);
console.log(`writing ${location} with options ${options}`); console.log(`writing ${location} with options ${options}`);
try { try {
fs.writeFileSync(location, settings, options); return fs.writeFileSync(location, settings, options);
} catch (e) { } catch (e) {
if (e.code == fs.constants.O_EXCL) { if (e.code == fs.constants.O_EXCL) {
console.log(`overwriting existing file ${location}`); console.log(`overwriting existing file ${location}`);