Merge "labs: protect downloader.js from deletion"

This commit is contained in:
Jenkins 2015-05-10 12:45:05 +00:00 committed by Gerrit Code Review
commit 02b4b06cf8
3 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,7 @@ ECHO.
ECHO Expect this to take several minutes or longer, depending on your
ECHO Internet connection.
ECHO.
cscript /nologo downloader.js %ISOURL%
cscript /nologo %TOOLSDIR%\downloader.js %ISOURL%
RENAME downloaded.bin %INSTALLFILE%
MOVE %INSTALLFILE% %IMGDIR%
IF EXIST %IMGDIR%\%INSTALLFILE% goto got_install_iso

View File

@ -8,6 +8,7 @@ SET IMGDIR=%TOPDIR%\%P_IMGDIR%
SET LOGDIR=%TOPDIR%\%P_LOGDIR%
SET STATUSDIR=%TOPDIR%\%P_STATUSDIR%
SET SHAREDIR=%TOPDIR%
SET TOOLSDIR=%TOPDIR%\tools
ECHO %time% Creating directories (if needed)
IF NOT EXIST %AUTODIR% mkdir %AUTODIR%

View File

@ -1,5 +1,6 @@
/* Taken from http://superuser.com/a/536400 */
/* Use: cscript /nologo downloader.js <URL> */
/* Used by Windows batch scripts to download distro ISO image */
var WinHttpReq = new ActiveXObject("WinHttp.WinHttpRequest.5.1");
WinHttpReq.Open("GET", WScript.Arguments(0), /*async=*/false);