mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
13 lines
175 B
Go
13 lines
175 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package secureexec
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func Command(name string, args ...string) *exec.Cmd {
|
|
return exec.Command(name, args...)
|
|
}
|