Skip to content

Commit

Permalink
fixing status message when writing a file to show the actual extensio…
Browse files Browse the repository at this point in the history
…n being written
  • Loading branch information
doowb committed Mar 2, 2013
1 parent 574c288 commit 1caf485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/assemble.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ module.exports = function(grunt) {
}

file.write(destFile, result);
grunt.log.ok('File ' + (filename + '.html').magenta + ' created.' + ' ok '.green); // ✔ doesn't work for some reason
grunt.log.ok('File ' + (filename + options.ext).magenta + ' created.' + ' ok '.green); // ✔ doesn't work for some reason
}); // build

}); // filePair.src.forEach
Expand Down

0 comments on commit 1caf485

Please sign in to comment.