2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 00:20:48 +00:00
restic/changelog/0.14.0_2022-08-25/issue-3692

14 lines
643 B
Plaintext
Raw Normal View History

2022-08-23 23:21:01 +00:00
Bugfix: Fix rclone (shimmed by Scoop) and sftp not working on Windows
2022-08-23 23:21:01 +00:00
In #3602 a fix was introduced to address the problem of `rclone` prematurely
exiting when Ctrl+C is pressed on Windows. The solution was to create the
subprocess with its console detached from the restic console.
However, this solution failed when using `rclone` installed by Scoop or using
`sftp` with a passphrase-protected private key. We've now fixed this by using
a different approach to prevent Ctrl-C from passing down too early.
https://github.com/restic/restic/issues/3681
https://github.com/restic/restic/issues/3692
https://github.com/restic/restic/pull/3696