Skip to content

Commit

Permalink
fix(install): will not use apt steamcmd package if ubuntu 14.04 (#2820)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Apr 13, 2020
1 parent 8034566 commit b30b36f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lgsm/functions/check_deps.sh
Expand Up @@ -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

This comment has been minimized.

Copy link
@dvdvideo1234

dvdvideo1234 Apr 16, 2020

Contributor
:
else
array_deps_required+=( steamcmd )
Expand Down

0 comments on commit b30b36f

Please sign in to comment.