From aae92ee09763c65e1ed8e217d5f1e089f25f2f35 Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Thu, 14 Dec 2023 11:14:22 +0100 Subject: [PATCH] Remove duplicate part of the reconcile hr --reset help message Signed-off-by: Sven Hoexter (cherry picked from commit 59e5f4c8876b17fd1ce8784dc0c43147de0420c4) --- cmd/flux/reconcile_helmrelease.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/flux/reconcile_helmrelease.go b/cmd/flux/reconcile_helmrelease.go index 14414acd3c..1a1a576922 100644 --- a/cmd/flux/reconcile_helmrelease.go +++ b/cmd/flux/reconcile_helmrelease.go @@ -55,7 +55,7 @@ var rhrArgs reconcileHelmReleaseFlags func init() { reconcileHrCmd.Flags().BoolVar(&rhrArgs.syncHrWithSource, "with-source", false, "reconcile HelmRelease source") reconcileHrCmd.Flags().BoolVar(&rhrArgs.syncForce, "force", false, "force a one-off install or upgrade of the HelmRelease resource") - reconcileHrCmd.Flags().BoolVar(&rhrArgs.syncReset, "reset", false, "reset the reset the failure count for this HelmRelease resource") + reconcileHrCmd.Flags().BoolVar(&rhrArgs.syncReset, "reset", false, "reset the failure count for this HelmRelease resource") reconcileCmd.AddCommand(reconcileHrCmd) }