1
0
Fork 0
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:
David McKnight 2007-04-27 13:03:26 +00:00
parent f49f3c8ec6
commit b5a98ae067
2 changed files with 3 additions and 3 deletions

View file

@ -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 {

View file

@ -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