We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When append_path_with_name is given a "special" file (i.e. a file that is not a file, directory or symlink), it ignores the given name. I quickly glanced over the code and I think the fix is just to replace path by ar_name when calling append_special in builder.rs line 463: https://github.com/alexcrichton/tar-rs/blob/f4f439ca0cd3a984d2a66fb8e42f6e2307876afd/src/builder.rs#LL463C33-L463C37
append_path_with_name
path
ar_name
append_special
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When
append_path_with_name
is given a "special" file (i.e. a file that is not a file, directory or symlink), it ignores the given name. I quickly glanced over the code and I think the fix is just to replacepath
byar_name
when callingappend_special
in builder.rs line 463: https://github.com/alexcrichton/tar-rs/blob/f4f439ca0cd3a984d2a66fb8e42f6e2307876afd/src/builder.rs#LL463C33-L463C37The text was updated successfully, but these errors were encountered: