Browse Source
fix(install): non-free is now correctly detected (#4390 )
Debian has added non-free-firmware repo. This was being detected alongside non-free and causing issues with steamcmd installation. this fix ensures non-free is only detected.
pull/4396/head
Daniel Gibbs
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
lgsm/modules/check_deps.sh
@ -252,7 +252,7 @@ fn_deps_detector() {
elif [ " ${ deptocheck } " = = "steamcmd" ] && [ -z " ${ appid } " ] ; then
elif [ " ${ deptocheck } " = = "steamcmd" ] && [ -z " ${ appid } " ] ; then
array_deps_required = ( " ${ array_deps_required [@]/steamcmd/ } " )
array_deps_required = ( " ${ array_deps_required [@]/steamcmd/ } " )
steamcmdstatus = 1
steamcmdstatus = 1
elif [ " ${ deptocheck } " = = "steamcmd" ] && [ " ${ distroid } " = = "debian" ] && ! grep -qE "^deb .*non-free" /etc/apt/sources.list; then
elif [ " ${ deptocheck } " = = "steamcmd" ] && [ " ${ distroid } " = = "debian" ] && ! grep -qE '[^deb]+non-free([^-]|$)' /etc/apt/sources.list; then
array_deps_required = ( " ${ array_deps_required [@]/steamcmd/ } " )
array_deps_required = ( " ${ array_deps_required [@]/steamcmd/ } " )
steamcmdstatus = 1
steamcmdstatus = 1
# Java: Added for users using Oracle JRE to bypass check.
# Java: Added for users using Oracle JRE to bypass check.