Skip to content

Commit

Permalink
cmd/rmi: Fix typo
Browse files Browse the repository at this point in the history
Fallout from aaf81a5

#1446
  • Loading branch information
debarshiray committed Feb 5, 2024
1 parent ce66b0b commit da23002
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cmd/rmi.go
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit da23002

Please sign in to comment.