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

This commit is contained in:
p4u1 2025-02-03 15:31:38 +01:00
parent 8a01b8eb41
commit 33d5885f6f

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",