Skip to content

Commit

Permalink
Merge pull request #112 from ember-cli/rwjblue-patch-1
Browse files Browse the repository at this point in the history
Prevent error when calling fs.unlink without a callback
  • Loading branch information
rwjblue authored Jan 31, 2019
2 parents 09f7fad + ccc9c18 commit 9868621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ember-modules-codemod.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function buildReport() {
});

// Delete the temporary log file
fs.unlink(log);
fs.unlinkSync(log);
});

// If there's anything to report, convert the JSON tuple into human-formatted
Expand Down

0 comments on commit 9868621

Please sign in to comment.