Skip to content

Commit

Permalink
Add some helpful text
Browse files Browse the repository at this point in the history
  • Loading branch information
iAmWillShepherd committed Jun 29, 2017
1 parent fdf209e commit a1b23c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/is-it-pretty.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ glob(globPattern, (err, matches) => {
if (uglyFiles.length === 0) {
console.log("This is some pretty code");
} else {
console.log(`${uglyFiles.length} out of ${matchCount} code files are ugly. Please prettify the following files:`);
console.log(`${uglyFiles.length} out of ${matchCount} code files are ugly. Please run 'npm run prettify' to make the following files pretty:`);

for (const file of uglyFiles) {
console.log(`\t${file}`);
Expand Down

0 comments on commit a1b23c0

Please sign in to comment.