From 5e656694633541881bb5805d67a862767a719916 Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Sat, 4 Nov 2023 09:23:36 +0800 Subject: [PATCH] fix: args ignore in diff subcommand (#1118) --- pkg/app/app.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/app/app.go b/pkg/app/app.go index a4becfc2..70c397bf 100644 --- a/pkg/app/app.go +++ b/pkg/app/app.go @@ -1591,6 +1591,8 @@ func (a *App) diff(r *Run, c DiffConfigProvider) (*string, bool, bool, []error) var errs []error + helm.SetExtraArgs(GetArgs(c.Args(), r.state)...) + opts := &state.DiffOpts{ Context: c.Context(), Output: c.DiffOutput(),