Skip to content

Commit

Permalink
Aligns the service delete info message with service create
Browse files Browse the repository at this point in the history
  • Loading branch information
navidshaikh committed May 9, 2019
1 parent 7f3f80c commit a23c772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kn/commands/service_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func NewServiceDeleteCommand(p *KnParams) *cobra.Command {
if err != nil {
return err
}
fmt.Fprintf(cmd.OutOrStdout(), "Deleted %s in %s namespace.\n", args[0], namespace)
fmt.Fprintf(cmd.OutOrStdout(), "Service '%s' is successfully deleted in namespace '%s'.\n", args[0], namespace)
return nil
},
}
Expand Down

0 comments on commit a23c772

Please sign in to comment.