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:
parent
6633e7519b
commit
d4619f0ce9
1 changed files with 2 additions and 2 deletions
|
@ -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$
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue