diff options
author | Raphael <raphael@google.com> | 2009-10-20 12:16:51 -0700 |
---|---|---|
committer | Raphael <raphael@google.com> | 2009-10-20 12:16:51 -0700 |
commit | e5ac857fa16b97c99f56f01fccc16ac3f464c716 (patch) | |
tree | 11513117dd4a655fee89cf0ed7b0bdce49c12d1f /sdkmanager | |
parent | 4b85c08b422e23c0808232eded2e91c29cbed1f1 (diff) | |
download | sdk-e5ac857fa16b97c99f56f01fccc16ac3f464c716.zip sdk-e5ac857fa16b97c99f56f01fccc16ac3f464c716.tar.gz sdk-e5ac857fa16b97c99f56f01fccc16ac3f464c716.tar.bz2 |
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
Diffstat (limited to 'sdkmanager')
-rwxr-xr-x | sdkmanager/app/etc/android.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdkmanager/app/etc/android.bat b/sdkmanager/app/etc/android.bat index 239ed81..58790ce 100755 --- a/sdkmanager/app/etc/android.bat +++ b/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 |