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
The problem here is that not all filesystems allow configuring the mtime (for whatever reason), but Cargo tries to set the mtime of files when it extracts them from a tarball. Cargo doesn't actually really need to do that though, so it should be easy enough to simply call set_preserve_mtime(false) on tarball extraction
Configure tar to not set mtime
This PR is fixes#6238. Currently uses a `patch` on `tar`, and should not be merged until `tar` makes a release containing the function `set_preserve_mtime`.
Problem
Packaging on FAT-family filesystems fails on attempting to set the Modified Time.
Steps
cargo package
on a FAT32 or exFAT filesystemPossible Solution(s)
Take advantage of the flag added here.
The text was updated successfully, but these errors were encountered: