Duplicate -- copy finder info.

This commit is contained in:
Kelvin Sherlock 2015-11-28 12:07:51 -05:00
parent 37a3d2acd4
commit 556809470a

View File

@ -368,5 +368,10 @@ int main(int argc, char **argv)
ok = copyFork(src, dest, 1);
}
// copy the finder info if -r and -d not specified.
if (!opts['d' - 'a'] && !opts['r' - 'a']) {
ok = copyFinderInfo(src, dest);
}
return ok;
}