improve help message

This commit is contained in:
Iuri Matias 2017-02-19 20:13:30 -05:00
parent 3890b4a38e
commit e4bcdf7f12
1 changed files with 4 additions and 4 deletions

View File

@ -19,11 +19,11 @@ TemplateGenerator.prototype.generate = function(destinationFolder, name) {
if (name === 'embark_demo') {
console.log('-------------------'.yellow);
console.log('next steps:'.green);
console.log(('-> cd ' + destinationFolder + name).green);
console.log('-> embark blockchain or embark simulator'.green);
console.log('Next steps:'.green);
console.log(('-> ' + ('cd ' + destinationFolder + name).bold.cyan).green);
console.log('-> '.green + 'embark blockchain'.bold.cyan + ' or '.green + 'embark simulator'.bold.cyan);
console.log('open another console in the same directory and run'.green);
console.log('-> embark run'.green);
console.log('-> '.green + 'embark run'.bold.cyan);
console.log('For more info go to http://github.com/iurimatias/embark-framework'.green);
}
};