mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 18:10:21 +00:00
17 lines
225 B
Go
17 lines
225 B
Go
package test
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
)
|
|
|
|
var (
|
|
rudrPath, _ = os.Getwd()
|
|
)
|
|
|
|
func Command(name string, arg ...string) *exec.Cmd {
|
|
commandName := path.Join(rudrPath, name)
|
|
return exec.Command(commandName, arg...)
|
|
}
|