decentral1se
de7054fd74
Some checks reported errors
continuous-integration/drone/push Build was killed
This might cause the macosx build not to fail, I hope. See https://github.com/docker/cli/tree/v20.10.10/cli/connhelper/commandconn
11 lines
137 B
Go
11 lines
137 B
Go
package commandconn
|
|
|
|
import (
|
|
"os/exec"
|
|
"syscall"
|
|
)
|
|
|
|
func setPdeathsig(cmd *exec.Cmd) {
|
|
cmd.SysProcAttr.Pdeathsig = syscall.SIGKILL
|
|
}
|