summaryrefslogtreecommitdiff
path: root/vendor/github.com/mattn/go-shellwords/util_go15.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mattn/go-shellwords/util_go15.go')
-rw-r--r--vendor/github.com/mattn/go-shellwords/util_go15.go11
1 files changed, 8 insertions, 3 deletions
diff --git a/vendor/github.com/mattn/go-shellwords/util_go15.go b/vendor/github.com/mattn/go-shellwords/util_go15.go
index 180f00f0b..ddcbf229e 100644
--- a/vendor/github.com/mattn/go-shellwords/util_go15.go
+++ b/vendor/github.com/mattn/go-shellwords/util_go15.go
@@ -9,14 +9,19 @@ import (
"strings"
)
-func shellRun(line string) (string, error) {
+func shellRun(line, dir string) (string, error) {
var b []byte
var err error
+ var cmd *exec.Cmd
if runtime.GOOS == "windows" {
- b, err = exec.Command(os.Getenv("COMSPEC"), "/c", line).Output()
+ cmd = exec.Command(os.Getenv("COMSPEC"), "/c", line)
} else {
- b, err = exec.Command(os.Getenv("SHELL"), "-c", line).Output()
+ cmd = exec.Command(os.Getenv("SHELL"), "-c", line)
}
+ if dir != "" {
+ cmd.Dir = dir
+ }
+ b, err = cmd.Output()
if err != nil {
return "", err
}