1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-08 04:04:22 +02:00
lazygit/pkg/secureexec/secureexec_default.go

13 lines
175 B
Go
Raw Normal View History

2021-09-16 15:38:43 +02:00
//go:build !windows
// +build !windows
package secureexec
import (
"os/exec"
)
func Command(name string, args ...string) *exec.Cmd {
return exec.Command(name, args...)
}