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
How would you like this to behave? If symlinks are used to normalize files or to place them on separate partitions, would you still like all content to be copied directly into the destination folder?
Maybe you would like to preserve the link: cp -R --preserve=links sourcedir/ targetdir/
How about two options:
--followsymlinks
--preservesymlinks
ezupgrade does not follow symlinks.
The "cp" command can follow symlinks by using the "L" option, e.g.:
cp -RL sourcedir/ targetdir/
See man page.
The text was updated successfully, but these errors were encountered: