Merge "Quote xcopy arguments to fix "Invalid number of parameters" error" into studio-1.4-dev
automerge: 98c9983

* commit '98c998386e34d956b4ab6ab92b313039cb522f93':
  Quote xcopy arguments to fix "Invalid number of parameters" error
diff --git a/sdkmanager/app/etc/android.bat b/sdkmanager/app/etc/android.bat
index 767e4d5..8690b77 100755
--- a/sdkmanager/app/etc/android.bat
+++ b/sdkmanager/app/etc/android.bat
@@ -47,7 +47,7 @@
     rem This avoids locking the tool dir in case the user is trying to update it.

 

     set tmp_dir=%TEMP%\temp-android-tool

-    xcopy %swt_path% %tmp_dir%\%swt_path% /I /E /C /G /R /Y /Q > nul

+    xcopy "%swt_path%" "%tmp_dir%\%swt_path%" /I /E /C /G /R /Y /Q > nul

     copy /B /D /Y lib\common.jar         %tmp_dir%\lib\        > nul

     copy /B /D /Y lib\commons-codec*     %tmp_dir%\lib\        > nul

     copy /B /D /Y lib\commons-compress*  %tmp_dir%\lib\        > nul

@@ -65,7 +65,7 @@
 

     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%

-    cd /d %tmp_dir%

+    cd /d "%tmp_dir%"

 

 :EndTempCopy