diff options
author | Raphael Moll <raphael@google.com> | 2011-10-04 22:13:02 -0700 |
---|---|---|
committer | Raphael Moll <raphael@google.com> | 2011-10-04 22:13:02 -0700 |
commit | 90e9328de91889071339e06529058dd4513d3b3b (patch) | |
tree | 66944acab493ad8992e2e9c2437ac30bb6e3e4f6 | |
parent | 2c07fc348d85836bff4d1f9ca656d96898a0833c (diff) | |
download | sdk-90e9328de91889071339e06529058dd4513d3b3b.zip sdk-90e9328de91889071339e06529058dd4513d3b3b.tar.gz sdk-90e9328de91889071339e06529058dd4513d3b3b.tar.bz2 |
SDK: fix typo in android.bat
This prevents httpcore from being copied correctly.
Change-Id: I28d6b4020e854cbe914fd418e51e6a53e7c5444f
-rwxr-xr-x | sdkmanager/app/etc/android.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdkmanager/app/etc/android.bat b/sdkmanager/app/etc/android.bat index 3233ebd..6f93c7b 100755 --- a/sdkmanager/app/etc/android.bat +++ b/sdkmanager/app/etc/android.bat @@ -64,8 +64,8 @@ if not "%1"=="" goto EndTempCopy copy /B /D /Y lib\commons-logging* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\commons-codec* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\httpclient* %tmp_dir%\lib\ > nul
- copy /B /D /Y lib\httpcode* %tmp_dir%\lib\ > nul
- copy /B /D /Y lib\httpmime* %tmp_dir%\lib\ > nul + copy /B /D /Y lib\httpcore* %tmp_dir%\lib\ > nul
+ copy /B /D /Y lib\httpmime* %tmp_dir%\lib\ > nul
rem jar_path and swt_path are relative to PWD so we don't need to adjust them, just change dirs.
set tools_dir=%cd%
|