1
0
mirror of https://github.com/restic/restic.git synced 2024-06-30 08:20:55 +02:00
restic/changelog/unreleased/issue-2319

13 lines
544 B
Plaintext
Raw Normal View History

2020-10-24 22:49:29 +02: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 11:23:09 +01: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 22:49:29 +02:00
to dump directories with extended attributes. These compatibility problems
2020-11-02 11:23:09 +01:00
are now corrected.
2020-10-24 22:49:29 +02:00
2020-11-02 11:23:09 +01:00
In addition, a tar file now includes the name of the owner and group of a file.
2020-10-24 22:49:29 +02:00
https://github.com/restic/restic/issues/2319
https://github.com/restic/restic/pull/3039