Skip to content

Commit e99f0dd

Browse files
authored
fix: fix typo in CLI (#2565)
Signed-off-by: vvaswani <[email protected]>
1 parent db94a57 commit e99f0dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/cli/cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func NewRootCmd(l zerolog.Logger) *cobra.Command {
145145

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

0 commit comments

Comments
 (0)