Browse Source
feat(install): refactor gslt to automatically detect gslt variable (#2280)
pull/2284/head
Daniel Gibbs
6 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/command_install.sh
|
|
@ -32,7 +32,7 @@ else |
|
|
|
|
|
|
|
# Configuration |
|
|
|
install_config.sh |
|
|
|
if [ "${shortname}" == "bb2" ]||[ "${shortname}" == "bmdm" ]||[ "${shortname}" == "csgo" ]||[ "${shortname}" == "em" ]||[ "${shortname}" == "gmod" ]||[ "${shortname}" == "nmrih" ]||[ "${shortname}" == "tf2" ]||[ "${shortname}" == "tu" ]; then |
|
|
|
if [ -v "${gslt}" ]; then |
|
|
|
install_gslt.sh |
|
|
|
elif [ "${shortname}" == "dst" ]; then |
|
|
|
install_dst_token.sh |
|
|
@ -47,4 +47,4 @@ else |
|
|
|
fix.sh |
|
|
|
install_complete.sh |
|
|
|
core_exit.sh |
|
|
|
fi |
|
|
|
fi |
|
|
|