mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 18:05:33 +02:00
[181667] removing the /O for xcopy since it won't work on Vista unless you're an admin
This commit is contained in:
parent
f49f3c8ec6
commit
b5a98ae067
2 changed files with 3 additions and 3 deletions
|
@ -355,7 +355,7 @@ public class UniversalFileSystemMiner extends Miner {
|
|||
if (folderCopy) {
|
||||
command = "xcopy " + source //$NON-NLS-1$
|
||||
+ " " + tgt //$NON-NLS-1$
|
||||
+ " /S /E /K /O /Q /H /I"; //$NON-NLS-1$
|
||||
+ " /S /E /K /Q /H /I"; //$NON-NLS-1$
|
||||
}
|
||||
else {
|
||||
String unquotedTgt = tgt.substring(1, tgt.length() - 1);
|
||||
|
@ -375,7 +375,7 @@ public class UniversalFileSystemMiner extends Miner {
|
|||
return;
|
||||
}
|
||||
}
|
||||
command = "xcopy " + source + " " + tgt + " /Y /K /O /Q /H"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
|
||||
command = "xcopy " + source + " " + tgt + " /Y /K /Q /H"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -1106,7 +1106,7 @@ public class LocalFileService extends AbstractFileService implements IFileServic
|
|||
throw new RemoteFileException(e.getMessage(), e);
|
||||
}
|
||||
}
|
||||
command = _osCmdShell + "xcopy " + src + " " + target + " /Y /K /O /Q /H"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
|
||||
command = _osCmdShell + "xcopy " + src + " " + target + " /Y /K /Q /H"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue