diff --git a/basher.go b/basher.go index 2edb82b..d6b8fe6 100644 --- a/basher.go +++ b/basher.go @@ -274,6 +274,7 @@ func (c *Context) Run(command string, args []string) (int, error) { signals := make(chan os.Signal, 1) signal.Notify(signals) + signal.Ignore(syscall.SIGURG) cmd := exec.Command(c.BashPath, "-c", command+argstring) cmd.Env = []string{"BASH_ENV=" + envfile}