2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 06:10:44 +00:00

15 lines
290 B
Go
Raw Normal View History

package exec
import (
"fmt"
"os/exec"
)
// Subprocess returns a command to execute a subprocess directly.
func Subprocess(args []string) (*exec.Cmd, error) {
if len(args) == 0 {
return nil, fmt.Errorf("need an executable to run")
}
return exec.Command(args[0], args[1:]...), nil
}