This commit is contained in:
rob boll 2017-04-12 11:16:12 -04:00
parent 709195848a
commit 371ca7f752
2 changed files with 5 additions and 5 deletions

View File

@ -14,14 +14,14 @@ const (
)
type execer struct {
writer io.Writer
writer io.Writer
kubeContext string
extra []string
extra []string
}
func NewHelmExec(writer io.Writer, kubeContext string) Interface {
return &execer{
writer: writer,
writer: writer,
kubeContext: kubeContext,
}
}

View File

@ -1,13 +1,13 @@
package state
import (
"errors"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"sync"
"errors"
"github.com/roboll/helmfile/helmexec"