Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion app/cli/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func NewRootCmd(l zerolog.Logger) *cobra.Command {

// Warn users when the session is interactive, and the operation is supposed to use an API token instead
if shouldAskForConfirmation(cmd) && isUserToken && !flagYes {
if !confirmationPrompt(fmt.Sprintf("This command is will run against the organization %q", orgName)) {
if !confirmationPrompt(fmt.Sprintf("This command will run against the organization %q", orgName)) {
return errors.New("command canceled by user")
}
}
Expand Down
Loading