Browse Source
fix(install): will not use apt steamcmd package if ubuntu 14.04 (#2820)
pull/2836/head
Daniel Gibbs
5 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/check_deps.sh
|
|
@ -349,8 +349,8 @@ fn_deps_build_debian(){ |
|
|
|
fi |
|
|
|
# If requires steamcmd. |
|
|
|
if [ "${appid}" ]; then |
|
|
|
# Will not use apt if non-free repo is missing |
|
|
|
if [ "${distroid}" == "debian" ]&& ! grep -qE "^deb .*non-free" /etc/apt/sources.list; then |
|
|
|
# Will not use apt if non-free repo is missing or Ubuntu 14.04 |
|
|
|
if [ "${distroversion}" == "14.04" ]||[ "${distroid}" == "debian" ]&& ! grep -qE "^deb .*non-free" /etc/apt/sources.list; then |
|
|
|
: |
|
|
|
else |
|
|
|
array_deps_required+=( steamcmd ) |
|
|
|