Browse Source
fix: change exitcode to 0 if dependency install was successful
pull/4527/merge
Daniel Gibbs
6 months ago
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
1 changed files with
2 additions and
1 deletions
-
lgsm/modules/check_deps.sh
|
|
@ -195,9 +195,10 @@ fn_install_missing_deps() { |
|
|
|
fi |
|
|
|
autodepinstall="$?" |
|
|
|
|
|
|
|
# If auto install passes remove steamcmd install failure. |
|
|
|
# If auto install passes, remove steamcmd install failure and set exit code to 0. |
|
|
|
if [ "${autodepinstall}" == "0" ]; then |
|
|
|
unset steamcmdfail |
|
|
|
exitcode=0 |
|
|
|
fi |
|
|
|
fi |
|
|
|
|
|
|
|