8000 fix: Clean up `coder config-ssh` dry-run behavior by mafredri · Pull Request #3660 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: Clean up coder config-ssh dry-run behavior #3660

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 24, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
s
  • Loading branch information
mafredri committed Aug 24, 2022
commit be559d7756731b895a30562e9ac100f3e1ec8e73
2 changes: 1 addition & 1 deletion cli/configssh.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func configSSH() *cobra.Command {
// Selecting "no" will use the last config.
sshConfigOpts = *lastConfig
} else {
changes = append(changes, "Use new SSH option")
changes = append(changes, "Use new SSH options")
}
// Only print when prompts are shown.
if yes, _ := cmd.Flags().GetBool("yes"); !yes {
Expand Down
0