fix cryptic error when running installer from inside a zip in Windows
This commit is contained in:
parent
ba7d6a0e51
commit
d1fb273d20
|
@ -1,5 +1,8 @@
|
|||
# Release notes
|
||||
## Upcoming
|
||||
* For players:
|
||||
* Fixed cryptic error when running the installer from inside a zip file on Windows.
|
||||
|
||||
* For the web UI:
|
||||
* Added stats to compatibility list.
|
||||
* Fixed compatibility list showing beta header when there's no beta in progress.
|
||||
|
|
|
@ -1 +1,8 @@
|
|||
START /WAIT /B internal/windows-install.exe
|
||||
@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 (
|
||||
start /WAIT /B internal/windows-install.exe
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue