Ralf Steube 981bf794e5
added apt (#2718)
initial version with incorrect flag types and descriptionsg
2025-03-02 10:29:26 +01:00

21 lines
493 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var cleanCmd = &cobra.Command{
Use: "clean",
Short: "clean packages and scripts from archive",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(cleanCmd).Standalone()
cleanCmd.Flags().Bool("dry-run", false, "perform a simulation of events taken")
cleanCmd.Flags().BoolP("simulate", "s", false, "perform a simulation of events taken")
rootCmd.AddCommand(cleanCmd)
}