mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7dee71e02f
full diff: https://github.com/mattn/go-shellwords/compare/v1.0.5...v1.0.6 relevant changes: - mattn/go-shellwords#24 Add dir option for parser - mattn/go-shellwords#26 Fix backquote in part of argument - fixes mattn/go-shellwords#25 Backtick "eats" all runes until isSpace - mattn/go-shellwords#28 Fix dollar quote - fixes mattn/go-shellwords#27 Multi-commands inside of command substitution are throwing "invalid command line string" errors - mattn/go-shellwords#24 Add dir option for parser - mattn/go-shellwords#24 Add dir option for parser - mattn/go-shellwords#24 Add dir option for parser Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
29 lines
479 B
Go
29 lines
479 B
Go
// +build !go1.6
|
|
|
|
package shellwords
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
"runtime"
|
|
"strings"
|
|
)
|
|
|
|
func shellRun(line, dir string) (string, error) {
|
|
var b []byte
|
|
var err error
|
|
var cmd *exec.Cmd
|
|
if runtime.GOOS == "windows" {
|
|
cmd = exec.Command(os.Getenv("COMSPEC"), "/c", line)
|
|
} else {
|
|
cmd = exec.Command(os.Getenv("SHELL"), "-c", line)
|
|
}
|
|
if dir != "" {
|
|
cmd.Dir = dir
|
|
}
|
|
b, err = cmd.Output()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strings.TrimSpace(string(b)), nil
|
|
}
|