Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dzencot committed Jul 4, 2024
1 parent 1468490 commit 05b5ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const writeIgnoreErrorsFile = (errors, ignoreFilePath) => {
const formatedErrors = formatErrors(errors);
const result = formatedErrors.join(errorDelimeter);

fs.appendFile(`${ignoreFilePath}${errorDelimeter}`, result, 'utf-8');
fs.appendFileSync(`${ignoreFilePath}${errorDelimeter}`, result, 'utf-8');
};

export {
Expand Down

0 comments on commit 05b5ca4

Please sign in to comment.