diff --git a/cmd/task/task.go b/cmd/task/task.go index 11d7ffab..9fe158df 100644 --- a/cmd/task/task.go +++ b/cmd/task/task.go @@ -208,7 +208,7 @@ func getArgs() (tasksAndVars, cliArgs []string) { func getSignalContext() context.Context { ch := make(chan os.Signal, 1) - signal.Notify(ch, os.Interrupt, os.Kill, syscall.SIGTERM) + signal.Notify(ch, os.Interrupt, syscall.SIGTERM) ctx, cancel := context.WithCancel(context.Background()) go func() { sig := <-ch