diff options
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/util_windows.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/util/util_windows.go b/src/util/util_windows.go index 1bf8f7aa..efd19a2a 100644 --- a/src/util/util_windows.go +++ b/src/util/util_windows.go @@ -12,15 +12,11 @@ import ( // ExecCommand executes the given command with $SHELL func ExecCommand(command string) *exec.Cmd { - shell := os.Getenv("SHELL") - if len(shell) == 0 { - shell = "cmd" - } args, _ := shellwords.Parse(command) allArgs := make([]string, len(args)+1) allArgs[0] = "/c" copy(allArgs[1:], args) - return exec.Command(shell, allArgs...) + return exec.Command("cmd", allArgs...) } // IsWindows returns true on Windows |
