1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[165891] unix remote part of the fix

This commit is contained in:
David McKnight 2006-12-05 19:20:56 +00:00
parent 6633e7519b
commit d4619f0ce9

View file

@ -377,10 +377,10 @@ public class UniversalFileSystemMiner extends Miner implements
}
else {
if (folderCopy) {
command = "cp -r " + source + " " + tgt; //$NON-NLS-1$ //$NON-NLS-2$
command = "cp -Rp " + source + " " + tgt; //$NON-NLS-1$ //$NON-NLS-2$
}
else {
command = "cp " + source + " " + tgt; //$NON-NLS-1$ //$NON-NLS-2$
command = "cp -p " + source + " " + tgt; //$NON-NLS-1$ //$NON-NLS-2$
}
}