blob: 18c40a6495ff8f337cd698bf2d619753f8436a9f (
plain)
1
2
3
4
5
6
7
8
9
|
@echo off
echo %~dp0 | findstr /C:"%TEMP%" 1>nul
if not errorlevel 1 (
echo Oops! It looks like you're running the installer from inside a zip file. Make sure you unzip the download first.
pause
) else (
cd "%~dp0"
start /WAIT /B ./internal/windows-install.exe
)
|