diff --git a/.gitignore b/.gitignore index a5e9f0e4..6d5b8eab 100644 --- a/.gitignore +++ b/.gitignore @@ -19,8 +19,9 @@ dist/ .DS_Store -# intellij idea/goland +# editors .idea/ +.vscode/ # exuberant ctags tags diff --git a/cmd/task/task.go b/cmd/task/task.go index e7071e1f..4831c4de 100644 --- a/cmd/task/task.go +++ b/cmd/task/task.go @@ -209,7 +209,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