mirror of
https://github.com/GameServerManagers/LinuxGSM.git
synced 2025-01-07 03:26:50 +08:00
fix(mcbserver): Wrong download url for serverfiles (#4675)
* fix(mcbserver): update download url * change(core_dl/fn_fetch_file): add useragent to fix mcbedrock download
This commit is contained in:
parent
42333c6a32
commit
d4ffe39505
@ -393,7 +393,7 @@ fn_fetch_file() {
|
||||
fi
|
||||
# Trap will remove part downloaded files if canceled.
|
||||
trap fn_fetch_trap INT
|
||||
curlcmd=(curl --connect-timeout 3 --fail -L -o "${local_filedir}/${local_filename}" --retry 2)
|
||||
curlcmd=(curl --connect-timeout 3 --fail -L -o "${local_filedir}/${local_filename}" --retry 2 -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.${randomint}.212 Safari/537.36")
|
||||
|
||||
# if is large file show progress, else be silent
|
||||
local exitcode=""
|
||||
|
@ -53,11 +53,11 @@ fn_update_remotebuild() {
|
||||
randomint=$(tr -dc 0-9 < /dev/urandom 2> /dev/null | head -c 4 | xargs)
|
||||
# Get remote build info.
|
||||
if [ "${mcversion}" == "latest" ]; then
|
||||
remotebuildversion=$(curl -H "Accept-Encoding: identity" -H "Accept-Language: en" -Ls -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.${randomint}.212 Safari/537.36" "https://www.minecraft.net/en-us/download/server/bedrock/" | grep -o 'https://minecraft.azureedge.net/bin-linux/[^"]*' | sed 's/.*\///' | grep -Eo "[.0-9]+[0-9]")
|
||||
remotebuildversion=$(curl -H "Accept-Encoding: identity" -H "Accept-Language: en" -Ls -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.${randomint}.212 Safari/537.36" "https://www.minecraft.net/en-us/download/server/bedrock/" | grep -o 'https://www.minecraft.net/bedrockdedicatedserver/bin-linux/[^"]*' | sed 's/.*\///' | grep -Eo "[.0-9]+[0-9]")
|
||||
else
|
||||
remotebuildversion="${mcversion}"
|
||||
fi
|
||||
remotebuildurl="https://minecraft.azureedge.net/bin-linux/bedrock-server-${remotebuildversion}.zip"
|
||||
remotebuildurl="https://www.minecraft.net/bedrockdedicatedserver/bin-linux/bedrock-server-${remotebuildversion}.zip"
|
||||
|
||||
if [ "${firstcommandname}" != "INSTALL" ]; then
|
||||
fn_print_dots "Checking remote build: ${remotelocation}"
|
||||
|
Loading…
Reference in New Issue
Block a user