use modified cmd args. closes #4

This commit is contained in:
rob boll 2017-04-20 10:01:16 -04:00
parent 441f00c670
commit 07cca09069
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ func (helm *execer) exec(args ...string) ([]byte, error) {
helm.writer.Write([]byte(fmt.Sprintf("exec: helm %s\n", strings.Join(cmdargs, " "))))
}
cmd := exec.Command(command, args...)
cmd := exec.Command(command, cmdargs...)
cmd.Dir = dir
return cmd.CombinedOutput()
}