-
Junegunn Choi authored
- Use bash for `set -o pipefail` - Fall back to simpler find command when the original command failed Related: #1061
Junegunn Choi authored- Use bash for `set -o pipefail` - Fall back to simpler find command when the original command failed Related: #1061
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
util_windows.go 963 B
// +build windows
package util
import (
"os"
"os/exec"
"syscall"
"github.com/mattn/go-shellwords"
)
// ExecCommand executes the given command with cmd
func ExecCommand(command string) *exec.Cmd {
return ExecCommandWith("cmd", command)
}
// ExecCommandWith executes the given command with cmd. _shell parameter is
// ignored on Windows.
func ExecCommandWith(_shell string, command string) *exec.Cmd {
args, _ := shellwords.Parse(command)
allArgs := make([]string, len(args)+1)
allArgs[0] = "/c"
copy(allArgs[1:], args)
return exec.Command("cmd", allArgs...)
}
// IsWindows returns true on Windows
func IsWindows() bool {
return true
}
// SetNonBlock executes syscall.SetNonblock on file descriptor
func SetNonblock(file *os.File, nonblock bool) {
syscall.SetNonblock(syscall.Handle(file.Fd()), nonblock)
}
// Read executes syscall.Read on file descriptor
func Read(fd int, b []byte) (int, error) {
return syscall.Read(syscall.Handle(fd), b)
}