[Bug]: MCbserver can't update
User story
I try ./mcbserver ul and cu but still not working
Game
MCB
Linux distro
Ubuntu 24.04
Command
command: update-lgsm
Further information
mcbserver@MCPE:~$ ./mcbserver u [ FAIL ] Updating mcbserver: Checking remote build: minecraft.net core_exit.sh exiting with code: 1
Relevant log output
Steps to reproduce
No response
The problem is the update script is scraping the Minecraft Dedicated Server downloads page, but the page format has been changed and no longer contains the latest version number. Instead they have a EULA wall and JavaScript that initiates the download. I'm unsure how this will be resolved.
Same issue here on Ubuntu 24.04 running multiple MCBservers. I really hope this can be resolved
Looks like the made a redesign of the page and have a api now for the latest download:
https://net-secondary.web.minecraft-services.net/api/v1.0/download/links
I can do with that a new implementation for the updater.
Quick jq to get the correct link:
jq '.result.links[] | select(.downloadType == "serverBedrockLinux") | .downloadUrl'
Made now a pr, if someone has time feel free to test it before that goes live.
Fixed in hotfix. Thanks for reporting