We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
serverstart.log: https://pastebin.com/jUa151tq
forge server (at least in forge-1.12.2-14.23.5.2854) does not contain universal in jar name: https://prnt.sc/sud5b0
thus fails check on line 472 and executes INSTALLSTART
work around: removing "universal*" from line 472 IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*universal*.jar" (
IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*universal*.jar" (
to
IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*.jar" (
fixes endless loop issue
thank you to my discord users: jellejurre for debugging/work around ,C-Moon for logs, and Zero for testing fix.
The text was updated successfully, but these errors were encountered:
likely related issues:: #67 and #70
Sorry, something went wrong.
work around: removing "universal*" from line 472 IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*universal*.jar" ( to IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*.jar" ( fixes endless loop issue
Remove the last asterisk, otherwise the check matches against the installer jar: IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%.jar" (
IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%.jar" (
This workaround is fine for newer versions, but not older versions (switches the target of the install-loop to older versions)
No branches or pull requests
serverstart.log:
https://pastebin.com/jUa151tq
forge server (at least in forge-1.12.2-14.23.5.2854) does not contain universal in jar name:
https://prnt.sc/sud5b0
thus fails check on line 472 and executes INSTALLSTART
work around:
removing "universal*" from line 472
IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*universal*.jar" (
to
IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*.jar" (
fixes endless loop issue
thank you to my discord users: jellejurre for debugging/work around ,C-Moon for logs, and Zero for testing fix.
The text was updated successfully, but these errors were encountered: