aboutsummaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorRaphael Moll <raphael@google.com>2011-09-17 11:25:36 -0700
committerRaphael <raphael@google.com>2011-09-19 12:26:04 -0700
commit1e0661b57dd8c7226c50e558dd89ecbda5276ecf (patch)
tree1fdafe89636241479c5c74b30a3ec7f7b2f74e70 /files
parent9b634c7d1d288d97c25d5d38355139da5f46e0d4 (diff)
downloadsdk-1e0661b57dd8c7226c50e558dd89ecbda5276ecf.zip
sdk-1e0661b57dd8c7226c50e558dd89ecbda5276ecf.tar.gz
sdk-1e0661b57dd8c7226c50e558dd89ecbda5276ecf.tar.bz2
Build AVD Manager.exe as part of Windows SDK.
Also make sure the sdk manager post install will update the AVD Manager as required. Change-Id: I969899adf69f0ed0ddb1ef079451683dd0ce567f
Diffstat (limited to 'files')
-rw-r--r--files/post_tools_install.bat9
1 files changed, 9 insertions, 0 deletions
diff --git a/files/post_tools_install.bat b/files/post_tools_install.bat
index 36e3279..287dbc1 100644
--- a/files/post_tools_install.bat
+++ b/files/post_tools_install.bat
@@ -30,9 +30,18 @@ rem Change current directory and drive to where the script is, to avoid
rem issues with directories containing whitespaces.
cd /d %~dp0
+:Step1
set src=SDK Manager.exe
set dst=..\..\%src%
+if not exist "%src%" goto Step2
+ echo Updating %src%
+ copy /V /Y "%src%" "%dst%"
+
+:Step2
+set src=AVD Manager.exe
+set dst=..\..\%src%
+
if not exist "%src%" goto Cleanup
echo Updating %src%
copy /V /Y "%src%" "%dst%"