fix: Adds chaos flag to restart command
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
p4u1 2025-02-03 15:31:38 +01:00 committed by decentral1se
parent cee808ff06
commit d09a19a385

View File

@ -123,6 +123,13 @@ Pass "--all-services/-a" to restart all services.`,
var allServices bool
func init() {
AppRestartCommand.Flags().BoolVarP(
&internal.Chaos,
"chaos",
"C",
false,
"ignore uncommitted recipes changes",
)
AppRestartCommand.Flags().BoolVarP(
&allServices,
"all-services",