Skip to content

Commit

Permalink
Delete commander hint with %s concated
Browse files Browse the repository at this point in the history
  • Loading branch information
yungshenglu committed Apr 8, 2018
1 parent b55f180 commit 3b30d3d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ if(!program.help){
return;
}
else{
console.log(chalk.blue(' - src is %s', program.src));
console.log(chalk.blue(' - out is %s', program.out));
console.log(chalk.green(' - title is %s', program.title));
console.log(chalk.green(' - gen is %s', program.gen));
console.log(chalk.green(' - model is %s', program.model));
console.log(chalk.blue(' - src is', program.src));
console.log(chalk.blue(' - out is', program.out));
console.log(chalk.green(' - title is', program.title));
console.log(chalk.green(' - gen is', program.gen));
console.log(chalk.green(' - model is', program.model));
console.log('\n');

if(program.create){
Expand Down

0 comments on commit 3b30d3d

Please sign in to comment.