2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-15 23:32:21 +00:00
restic/changelog/0.15.0_2023-01-12/pull-4100

12 lines
492 B
Plaintext
Raw Normal View History

2023-01-08 14:34:30 +00:00
Bugfix: Make `self-update` enabled by default only in release builds
2023-01-08 14:34:30 +00:00
The `self-update` command was previously included by default in all builds of
restic as opposed to only in official release builds, even if the `selfupdate`
tag was not explicitly enabled when building.
2023-01-08 14:34:30 +00:00
This has now been corrected, and the `self-update` command is only available
if restic was built with `-tags selfupdate` (as done for official release
builds by `build.go`).
https://github.com/restic/restic/pull/4100