mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8b3759eae1
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
22 lines
409 B
Go
22 lines
409 B
Go
// +build !windows,go1.6
|
|
|
|
package shellwords
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"os/exec"
|
|
"strings"
|
|
)
|
|
|
|
func shellRun(line string) (string, error) {
|
|
shell := os.Getenv("SHELL")
|
|
b, err := exec.Command(shell, "-c", line).Output()
|
|
if err != nil {
|
|
if eerr, ok := err.(*exec.ExitError); ok {
|
|
b = eerr.Stderr
|
|
}
|
|
return "", errors.New(err.Error() + ":" + string(b))
|
|
}
|
|
return strings.TrimSpace(string(b)), nil
|
|
}
|