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