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
--- /home/user/wyng.orig 2024-05-01 21:07:11.759288927 -0400 +++ /sbin/wyng 2024-05-01 21:07:54.966291243 -0400 @@ -2576,7 +2576,7 @@ return do_exec([[CP.tar,"-cf","-","--no-recursion","--verbatim-files-from","--files-from", "-"], - dest.run_args([dest.cd + " && tar --no-same-owner -xf -"] + dest.run_args([dest.cd + " && tar -o -xf -"] + [" && mv '"+x+ext+"' '"+x+"'" for x in update_list if ext]) ], inlines=[x+ext for x in update_list], cwd=lcd)
on busybox, there is no --no-same-owner , but there is -o on both:
--no-same-owner
-o
man tar:
-o When creating, same as --old-archive. When extracting, same as --no-same-owner.
tar --hel on busybox:
-o Don't restore user:group
The text was updated successfully, but these errors were encountered:
OK, please submit as PR in the 08wip branch.
Sorry, something went wrong.
No branches or pull requests
on busybox, there is no
--no-same-owner
, but there is-o
on both:man tar:
tar --hel on busybox:
The text was updated successfully, but these errors were encountered: