summaryrefslogtreecommitdiffstats
path: root/src/util/util_windows.go
blob: 3aa86606ba74e5bffcd304e6cc96c013a01d2077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// +build windows

package util

import (
	"os"
	"os/exec"

	"github.com/junegunn/go-shellwords"
)

// 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...)
}

// IsWindows returns true on Windows
func IsWindows() bool {
	return true
}