cmd/rmi: Fix typo

Fallout from aaf81a56ea

https://github.com/containers/toolbox/pull/1446
This commit is contained in:
Debarshi Ray 2024-02-05 19:22:01 +01:00
parent ce66b0b86b
commit da23002c39
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright © 2019 2022 Red Hat Inc.
* Copyright © 2019 2024 Red Hat Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -44,13 +44,13 @@ var rmiCmd = &cobra.Command{
func init() {
flags := rmiCmd.Flags()
flags.BoolVarP(&rmiFlags.deleteAll, "all", "a", false, "Remove all toolbox containers")
flags.BoolVarP(&rmiFlags.deleteAll, "all", "a", false, "Remove all toolbox images")
flags.BoolVarP(&rmiFlags.forceDelete,
"force",
"f",
false,
"Force the removal of running and paused toolbox containers")
"Force the removal of toolbox images that are used by toolbox containers")
rmiCmd.SetHelpFunc(rmiHelp)
rootCmd.AddCommand(rmiCmd)