forked from TrueCloudLab/restic
Return exit code 130 when SIGINT is received
This commit is contained in:
parent
7877797c7e
commit
2aa6b49651
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue