restic/changelog/unreleased/pull-4163

14 lines
587 B
Plaintext
Raw Normal View History

2023-01-27 21:39:27 +01:00
Bugfix: Make `self-update --output` work with new filename on Windows
2023-01-27 21:39:27 +01:00
Since restic 0.14.0 the `self-update` command did not work when a custom output
filename was specified via the `--output` option. This has now been fixed.
2023-01-27 21:39:27 +01:00
As a workaround, either use an older restic version to run the self-update or
create an empty file with the output filename before updating e.g. using CMD:
2023-01-27 21:39:27 +01:00
`type nul > new-file.exe`
`restic self-update --output new-file.exe`
https://github.com/restic/restic/pull/4163
https://forum.restic.net/t/self-update-windows-started-failing-after-release-of-0-15/5836