Skip to content

Commit

Permalink
Merge branch 'master' of github.com:acode/cli
Browse files Browse the repository at this point in the history
  • Loading branch information
keithwhor committed Aug 27, 2021
2 parents 9de8f32 + f0e56e3 commit 3dca42f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/commands/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class GetCommand extends Command {
console.log();
console.log(`Try removing the existing directory first.`);
console.log();
console.log(`Use ${chalk.bold('lib get ' + service + ' --write-over')} to override.`);
console.log(`Use ${chalk.bold('lib download ' + service + ' --write-over')} to override.`);
console.log();
return callback(null);
}
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class InitCommand extends Command {
console.log(`Your Autocode development environment has been initialized.`);
console.log();
console.log(`Use ${chalk.bold('lib create <service>')} to create a new (local) service package.`);
console.log(`or type ${chalk.bold('lib get <service>')} to download an existing service package.`);
console.log(`or type ${chalk.bold('lib download <service>')} to download an existing service package.`);
console.log()
console.log(`Additionally, use ${chalk.bold('lib help')} to see more commands.`)
console.log();
Expand Down

0 comments on commit 3dca42f

Please sign in to comment.