restic/changelog/unreleased/issue-2319

13 lines
544 B
Text
Raw Normal View History

2020-10-24 20:49:29 +00:00
Bugfix: Correctly dump directories into tar files
The dump command previously wrote directories in a tar file in a way which
2020-11-02 10:23:09 +00:00
can cause compatibility problems. This caused, for example, 7zip on Windows
to not open tar files containing directories. In addition it was not possible
2020-10-24 20:49:29 +00:00
to dump directories with extended attributes. These compatibility problems
2020-11-02 10:23:09 +00:00
are now corrected.
2020-10-24 20:49:29 +00:00
2020-11-02 10:23:09 +00:00
In addition, a tar file now includes the name of the owner and group of a file.
2020-10-24 20:49:29 +00:00
https://github.com/restic/restic/issues/2319
https://github.com/restic/restic/pull/3039