Merge "labs: protect downloader.js from deletion"
This commit is contained in:
commit
02b4b06cf8
@ -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
|
||||
|
@ -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%
|
||||
|
@ -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);
|
Loading…
x
Reference in New Issue
Block a user