From d09a19a385a9719a8ca5c312dfc52d45bde0fe2e Mon Sep 17 00:00:00 2001 From: p4u1 Date: Mon, 3 Feb 2025 15:31:38 +0100 Subject: [PATCH] fix: Adds chaos flag to restart command --- cli/app/restart.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cli/app/restart.go b/cli/app/restart.go index eea10397..184ca0fc 100644 --- a/cli/app/restart.go +++ b/cli/app/restart.go @@ -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",