Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dzencot committed Jul 5, 2024
1 parent 05b5ca4 commit 1e08ba5
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.appendFileSync(`${ignoreFilePath}${errorDelimeter}`, result, 'utf-8');
fs.appendFileSync(ignoreFilePath, `${result}${errorDelimeter}`, 'utf-8');
};

export {
Expand Down

0 comments on commit 1e08ba5

Please sign in to comment.