1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-17 11:12:28 +08:00

test: add TestExecCommandWithOption

This commit is contained in:
dudaodong
2023-04-26 17:53:20 +08:00
parent 4311b9ac66
commit 424c291813
3 changed files with 17 additions and 8 deletions

View File

@@ -4,18 +4,11 @@ package system
import (
"os/exec"
"syscall"
)
func WithForeground() Option {
return func(c *exec.Cmd) {
if c.SysProcAttr == nil {
c.SysProcAttr = &syscall.SysProcAttr{
Foreground: true,
}
} else {
c.SysProcAttr.Foreground = true
}
}
}