Merge pull request #3039 from MichaelEischer/tar-proper-dirs

Properly dump directories to tar
This commit is contained in:
Alexander Neumann
2020-11-02 12:30:26 +01:00
committed by GitHub
4 changed files with 87 additions and 5 deletions

View File

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