Skip to content

Commit

Permalink
update cli text
Browse files Browse the repository at this point in the history
  • Loading branch information
s3ththompson committed May 31, 2017
1 parent 005effc commit 9421b0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/newwork.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function add() {

addEntry(argv.input, entry, err => {
if (err) exit(err);
console.log(`Added ${entry.url} to ${argv.input}`);
console.log(`Added ${chalk.bold(entry.url)} to ${chalk.bold(argv.input)}`);
exit();
});
})
Expand Down Expand Up @@ -348,7 +348,7 @@ function renderHTML(input, lockfile, cb) {
if (err) return cb(err, null);
var sites = input.sites;

const spinner = ora('Checking for new work...');
const spinner = ora('Checking for site updates...');
spinner.color = 'black';
spinner.start();
newwork.render(sites, lockfile, (err, body) => {
Expand Down

0 comments on commit 9421b0d

Please sign in to comment.