mirror of
https://github.com/octoleo/restic.git
synced 2024-11-25 22:27:35 +00:00
Return exit code 130 when SIGINT is received
This commit is contained in:
parent
7877797c7e
commit
2aa6b49651
@ -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 New Issue
Block a user