From 5708d1576b3e19601804ea7dfffdee3da6c0c00d Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 20 Oct 2009 12:16:51 -0700 Subject: [PATCH] Android.bat: remove /O in xcopy. It means "copy ownership". But on the Vista 64 box in the lab, it make the xcopy of lib/x86/swt.jar fail the next time when it was already present. SDK BUG 2198636 --- tools/sdkmanager/app/etc/android.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sdkmanager/app/etc/android.bat b/tools/sdkmanager/app/etc/android.bat index 239ed815c..58790ce1a 100755 --- a/tools/sdkmanager/app/etc/android.bat +++ b/tools/sdkmanager/app/etc/android.bat @@ -44,7 +44,7 @@ if not "%1"=="" goto EndTempCopy rem update the tools directory where the updater itself is located. set tmpdir=%TEMP%\temp-android-tool - xcopy lib\x86 %tmpdir%\lib\x86 /I /E /C /G /R /O /Y /Q > nul + xcopy lib\x86 %tmpdir%\lib\x86 /I /E /C /G /R /Y /Q > nul copy /B /D /Y lib\androidprefs.jar %tmpdir%\lib\ > nul copy /B /D /Y lib\org.eclipse.* %tmpdir%\lib\ > nul copy /B /D /Y lib\sdk* %tmpdir%\lib\ > nul