Skip to content

Commit

Permalink
fix: output correct CLI binary name in 'autocomplete' command
Browse files Browse the repository at this point in the history
  • Loading branch information
jbbarth committed Feb 24, 2024
1 parent 723580e commit 77206a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/commands/autocomplete/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ Setup Instructions for ${this.config.bin.toUpperCase()} CLI Autocomplete ---
2) Start using autocomplete:
${chalk.cyan(`sf ${tabStr}`)} # Command completion
${chalk.cyan(`sf command --${tabStr}`)} # Flag completion
${chalk.cyan(`${this.config.bin} ${tabStr}`)} # Command completion
${chalk.cyan(`${this.config.bin} command --${tabStr}`)} # Flag completion
`
break
}
Expand All @@ -96,8 +96,8 @@ Setup Instructions for ${this.config.bin.toUpperCase()} CLI Autocomplete ---
3) Start using autocomplete:
${chalk.cyan(`sf ${tabStr}`)} # Command completion
${chalk.cyan(`sf command --${tabStr}`)} # Flag completion
${chalk.cyan(`${this.config.bin} ${tabStr}`)} # Command completion
${chalk.cyan(`${this.config.bin} command --${tabStr}`)} # Flag completion
`
break
}
Expand All @@ -115,8 +115,8 @@ Setup Instructions for ${this.config.bin.toUpperCase()} CLI Autocomplete ---
3) Start using autocomplete:
${chalk.cyan(`sf ${tabStr}`)} # Command completion
${chalk.cyan(`sf command --${tabStr}`)} # Flag completion
${chalk.cyan(`${this.config.bin} ${tabStr}`)} # Command completion
${chalk.cyan(`${this.config.bin} command --${tabStr}`)} # Flag completion
`
break
}
Expand Down

0 comments on commit 77206a5

Please sign in to comment.