From 37a1fcc4af964bdcb1f73cd5e37cace0ebd46dab Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sat, 12 Mar 2022 16:01:42 +0100 Subject: [PATCH] fix: delete all secrets if force/noinput --- cli/app/remove.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app/remove.go b/cli/app/remove.go index 977ce9e2..ca467ba8 100644 --- a/cli/app/remove.go +++ b/cli/app/remove.go @@ -97,7 +97,7 @@ var appRemoveCommand = cli.Command{ } } - if internal.NoInput { + if internal.Force || internal.NoInput { secretNamesToRemove = secretNames }