Skip to content

Commit

Permalink
fix: remove outputFileSync usage (#645)
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsojramos authored Oct 3, 2023
1 parent 9a082cc commit 78c08d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion first-run.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function isFirstRun() {
return false;
}

fs.outputFileSync(configPath, '');
fs.writeFileSync(configPath, '');
} catch (error) {
console.warn(`First run: Unable to write firstRun file`, error);
}
Expand Down

0 comments on commit 78c08d7

Please sign in to comment.