Merge pull request #887 from hpcng/want-to-container

Fix a typo in container delete confirmation prompt
This commit is contained in:
Christian Goll
2023-08-09 09:10:02 +02:00
committed by GitHub

View File

@@ -14,7 +14,7 @@ func CobraRunE(cmd *cobra.Command, args []string) (err error) {
ContainerNames: args,
}
if !SetYes {
yes := util.ConfirmationPrompt(fmt.Sprintf("Are you sure you want to container %s", args))
yes := util.ConfirmationPrompt(fmt.Sprintf("Are you sure you want to delete container %s", args))
if !yes {
return
}