Browse Source
fix(ts3server): correct arch var in if statement (#3283)
fix update TS3.
without these changes i can't use the update function on my i686 system.
Did not test it on other systems then Debian 10 i686
pull/3289/head
Kirill Shamilin
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
lgsm/functions/update_ts3.sh
|
@ -103,9 +103,9 @@ fn_update_ts3_localbuild(){ |
|
|
|
|
|
|
|
|
fn_update_ts3_remotebuild(){ |
|
|
fn_update_ts3_remotebuild(){ |
|
|
# Gets remote build info. |
|
|
# Gets remote build info. |
|
|
if [ "${arch}" == "x86_64" ]; then |
|
|
if [ "${ts3arch}" == "x86_64" ]; then |
|
|
remotebuild=$(curl -s "https://www.teamspeak.com/versions/server.json" | jq -r '.linux.x86_64.version') |
|
|
remotebuild=$(curl -s "https://www.teamspeak.com/versions/server.json" | jq -r '.linux.x86_64.version') |
|
|
elif [ "${arch}" == "x86" ]; then |
|
|
elif [ "${ts3arch}" == "x86" ]; then |
|
|
remotebuild=$(curl -s "https://www.teamspeak.com/versions/server.json" | jq -r '.linux.x86.version') |
|
|
remotebuild=$(curl -s "https://www.teamspeak.com/versions/server.json" | jq -r '.linux.x86.version') |
|
|
fi |
|
|
fi |
|
|
if [ "${firstcommandname}" != "INSTALL" ]; then |
|
|
if [ "${firstcommandname}" != "INSTALL" ]; then |
|
|