Skip to content

Commit

Permalink
fix(cmd): Correct suspend hint (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
pan93412 authored Aug 28, 2024
1 parent 9c940dd commit 5dc1711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cmd/service/suspend/suspend.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func runSuspendNonInteractive(f *cmdutil.Factory, opts *Options) error {

// double check
if f.Interactive && !opts.skipConfirm {
confirm, err := f.Prompter.Confirm(fmt.Sprintf("Are you sure to deploy service <%s>?", idOrName), true)
confirm, err := f.Prompter.Confirm(fmt.Sprintf("Are you sure to suspend service <%s>?", idOrName), true)
if err != nil {
return err
}
Expand Down

0 comments on commit 5dc1711

Please sign in to comment.