You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Files that are outside of directories don't get packed when Add()'ed to the file store and subesquently Copy()'ed, and their permissions (i.e. rwx file mode bits) don't get retained.
Also, for files within (sub-) directories, their mode bits don't get fully retained when pulling either.
Seems like the un-packing is akin to tar -x rather than tar -x --preserve-permissions.
It would be nice to have an option to preserve the permissions
The text was updated successfully, but these errors were encountered:
Files that are outside of directories don't get packed when Add()'ed to the file store and subesquently Copy()'ed, and their permissions (i.e. rwx file mode bits) don't get retained.
for those, i came up with my own scheme for recording the file info (mode, modtime) in my app, by setting annotations on the layer corresponding to each file when pushing.
Files that are outside of directories don't get packed when
Add()
'ed to the file store and subesquentlyCopy()
'ed, and their permissions (i.e.rwx
file mode bits) don't get retained.Also, for files within (sub-) directories, their mode bits don't get fully retained when pulling either.
Seems like the un-packing is akin to
tar -x
rather thantar -x --preserve-permissions
.It would be nice to have an option to preserve the permissions
The text was updated successfully, but these errors were encountered: