Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1536 from kobarasukimaro/dev/erroutput
Browse files Browse the repository at this point in the history
Custom error message for cli
  • Loading branch information
benbrown authored Dec 14, 2018
2 parents da4f94f + 05ad75e commit f92cdaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ async function installBot(bot_vars) {
exec(action, function(err, stdout, stderr) {
if (err) {
say('An error occurred. You may already have that starter kit installed.');
say('Error:', err);
say('Error:' + err);
} else {
say(chalk.bold('Installation complete! To start your bot, type:'));
say('cd ' + folder_name + ' && node .');
Expand Down

0 comments on commit f92cdaa

Please sign in to comment.