Skip to content

Commit

Permalink
Fix issue 'Nodejs 8 warning' (gleero#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
quantenkeks committed Jul 5, 2018
1 parent 99489fc commit 6ef2502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/favicons.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ module.exports = function(grunt) {
// Cleanup
if (options.regular) {
['16x16', '32x32', '48x48'].forEach(function(size) {
fs.unlink(path.join(f.dest, size + '.png'));
fs.unlink(path.join(f.dest, size + '.png'), function(err) { });
});
}

Expand Down

0 comments on commit 6ef2502

Please sign in to comment.