set script path in Windows launch script (#777)
This commit is contained in:
parent
4ac04ee3ac
commit
9b09941bd5
|
@ -8,6 +8,9 @@
|
||||||
-->
|
-->
|
||||||
|
|
||||||
## Upcoming release
|
## Upcoming release
|
||||||
|
* For players:
|
||||||
|
* Fixed error when running the Windows installer as administrator (thanks to LostLogic!).
|
||||||
|
|
||||||
* For mod authors:
|
* For mod authors:
|
||||||
* Added validation for the manifest `Dependencies` field.
|
* Added validation for the manifest `Dependencies` field.
|
||||||
* Fixed validation for mods with version `0.0.0`.
|
* Fixed validation for mods with version `0.0.0`.
|
||||||
|
|
|
@ -4,5 +4,6 @@ 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.
|
echo Oops! It looks like you're running the installer from inside a zip file. Make sure you unzip the download first.
|
||||||
pause
|
pause
|
||||||
) else (
|
) else (
|
||||||
|
cd "%~dp0"
|
||||||
start /WAIT /B ./internal/windows-install.exe
|
start /WAIT /B ./internal/windows-install.exe
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue