Closed tlaurion closed 6 months ago
--- /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
OK, please submit as PR in the 08wip branch.
on busybox, there is no
--no-same-owner
, but there is-o
on both:man tar:
tar --hel on busybox: