Return exit code 130 when SIGINT is received

This commit is contained in:
Eri Bastos 2018-04-16 12:29:09 -03:00 committed by Alexander Neumann
parent 7877797c7e
commit 2aa6b49651
1 changed files with 4 additions and 1 deletions

View File

@ -64,7 +64,10 @@ func CleanupHandler(c <-chan os.Signal) {
fmt.Fprintf(stderr, "%ssignal %v received, cleaning up\n", ClearLine(), s)
code := 0
if s != syscall.SIGINT {
if s == syscall.SIGINT {
code = 130
} else {
code = 1
}