Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: visual_studio/NativeClientVSAddIn/developer_deploy.bat

Issue 10831030: NaCl settings and completed install scripts. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 :: This script will build, unpack, and install the add-in onto this machine. Th e installation requires admin privledge.
2 @echo off
3 setlocal
4 set OUT_DIR=%~dp0..\..\out\NativeClientVSAddIn\
5 set ZIP_BASE=NativeClientVSAddIn
6
7 if exist "%OUT_DIR%%ZIP_BASE%" (
8 del /q /s /f "%OUT_DIR%%ZIP_BASE%\*.*"
9 rmdir /s /q "%OUT_DIR%%ZIP_BASE%"
10 )
11
12 call %~dp0build.bat
13
14 python.exe -c "import zipfile; zztop=zipfile.ZipFile(r'%OUT_DIR%%ZIP_BASE%.zip') ; zztop.extractall(r'%OUT_DIR%%ZIP_BASE%'); zztop.close()"
15
16 :: Pipe two "Yes" answers to the install script to confirm overwrite and ppapi i nstallation.
17 (echo y&&echo y&&echo.) | call %OUT_DIR%%ZIP_BASE%\install.bat
18
19 endlocal
20 pause
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698