mirror of
https://github.com/TECHNOFAB11/powerproto.git
synced 2025-12-12 08:00:04 +01:00
chore(*): update command error type
Signed-off-by: storyicon <yuanchao@bilibili.com>
This commit is contained in:
parent
a4d4c459ba
commit
1c73b92f0f
5 changed files with 9 additions and 9 deletions
|
|
@ -29,7 +29,7 @@ import (
|
|||
// Execute is used to execute commands, return stdout and execute errors
|
||||
func Execute(ctx context.Context,
|
||||
log logger.Logger,
|
||||
dir string, name string, arguments []string, env []string) ([]byte, *ErrCommandExec) {
|
||||
dir string, name string, arguments []string, env []string) ([]byte, error) {
|
||||
cmd := exec.CommandContext(ctx, name, arguments...)
|
||||
cmd.Env = append(os.Environ(), env...)
|
||||
cmd.Dir = dir
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue