| Index: visual_studio/NativeClientVSAddIn/developer_deploy.bat
|
| diff --git a/visual_studio/NativeClientVSAddIn/developer_deploy.bat b/visual_studio/NativeClientVSAddIn/developer_deploy.bat
|
| index e7085df363951555f66783b745b7e9abc39808d5..dc6bf3de1249e0320f5c1aef8b2e034d1200b44f 100644
|
| --- a/visual_studio/NativeClientVSAddIn/developer_deploy.bat
|
| +++ b/visual_studio/NativeClientVSAddIn/developer_deploy.bat
|
| @@ -9,12 +9,10 @@ if exist "%OUT_DIR%\%ZIP_BASE%" (
|
| rmdir /s /q "%OUT_DIR%\%ZIP_BASE%"
|
| )
|
|
|
| -call "%~dp0build.bat"
|
| -
|
| python.exe -c "import tarfile; zztop=tarfile.open(r'%OUT_DIR%\%ZIP_BASE%.tgz'); zztop.extractall(r'%OUT_DIR%'); zztop.close()"
|
|
|
| :: Pass flags to bypass the install questions. Also pipe a key stroke 'return' to pass the 'Press any key to continue' in install.bat
|
| -echo. | call "%OUT_DIR%\%ZIP_BASE%\install.bat" --force --ppapi
|
| +set NO_PAUSE=1
|
| +call "%OUT_DIR%\%ZIP_BASE%\install.bat" --force --ppapi
|
|
|
| endlocal
|
| -pause
|
|
|