mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
e76f44a35b
* reactor rpc generation * update flag * update command * update command * update unit test * delete test file * optimize code * update doc * update gen pb * rename target dir * update mysql data type convert rule * add done flag * optimize req/reply parameter * optimize req/reply parameter * remove waste code * remove duplicate parameter * format code * format code * optimize naming * reactor rpcv2 to rpc * remove new line * format code * rename underline to snake * reactor getParentPackage * remove debug log * reactor background
43 lines
842 B
Go
43 lines
842 B
Go
package execx
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"os/exec"
|
|
"runtime"
|
|
"strings"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
"github.com/tal-tech/go-zero/tools/goctl/vars"
|
|
)
|
|
|
|
func Run(arg string, dir string) (string, error) {
|
|
goos := runtime.GOOS
|
|
var cmd *exec.Cmd
|
|
switch goos {
|
|
case vars.OsMac, vars.OsLinux:
|
|
cmd = exec.Command("sh", "-c", arg)
|
|
case vars.OsWindows:
|
|
cmd = exec.Command("cmd.exe", "/c", arg)
|
|
default:
|
|
return "", fmt.Errorf("unexpected os: %v", goos)
|
|
}
|
|
if len(dir) > 0 {
|
|
cmd.Dir = dir
|
|
}
|
|
stdout := new(bytes.Buffer)
|
|
stderr := new(bytes.Buffer)
|
|
cmd.Stdout = stdout
|
|
cmd.Stderr = stderr
|
|
err := cmd.Run()
|
|
if err != nil {
|
|
if stderr.Len() > 0 {
|
|
return "", errors.New(strings.TrimSuffix(stderr.String(), util.NL))
|
|
}
|
|
return "", err
|
|
}
|
|
|
|
return strings.TrimSuffix(stdout.String(), util.NL), nil
|
|
}
|