2023-01-08 14:34:30 +00:00
|
|
|
Bugfix: Make `mount` return exit code 0 after receiving Ctrl-C / SIGINT
|
2022-08-26 21:17:04 +00:00
|
|
|
|
2023-01-08 14:34:30 +00:00
|
|
|
To stop the `mount` command, a user has to press Ctrl-C or send a SIGINT
|
|
|
|
signal to restic. This used to cause restic to exit with a non-zero exit code.
|
2022-08-26 21:17:04 +00:00
|
|
|
|
2023-01-08 14:34:30 +00:00
|
|
|
The exit code has now been changed to zero as the above is the expected way
|
|
|
|
to stop the `mount` command and should therefore be considered successful.
|
2022-08-26 21:17:04 +00:00
|
|
|
|
|
|
|
https://github.com/restic/restic/issues/2015
|
|
|
|
https://github.com/restic/restic/pull/3894
|