Skip to content

Commit 07cca09

Browse files
committed
use modified cmd args. closes #4
1 parent 441f00c commit 07cca09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helmexec/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func (helm *execer) exec(args ...string) ([]byte, error) {
102102
helm.writer.Write([]byte(fmt.Sprintf("exec: helm %s\n", strings.Join(cmdargs, " "))))
103103
}
104104

105-
cmd := exec.Command(command, args...)
105+
cmd := exec.Command(command, cmdargs...)
106106
cmd.Dir = dir
107107
return cmd.CombinedOutput()
108108
}

0 commit comments

Comments
 (0)