Compare commits

..

No commits in common. "38e646578a2487ed10bd890a8b736aeb50d6a68b" and "2eabf019a6a392fcb6c8d02f3bed65753103511e" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -67,9 +67,6 @@ From Source:
2. Extract it!
3. Run it!
Dependencies: bash, coreurtils, curl, polkit (those should be installed by default on most distributions)
Optional Dependencies: zenity (for GUI), zstd (to extract some runners)
Arch Linux: https://aur.archlinux.org/packages/lug-helper/
## Contributors:

View File

@ -1187,7 +1187,7 @@ download_select_install() {
esac
# For runners, check GlibC version against runner requirements
if [ "$download_type" = "runner" ] && ( [ "$contributor_name" = "/dev/null" ] || [ "$contributor_name" = "TKG" ] ); then
if [ "$download_type" = "runner" ] && [ "$contributor_name" = "/dev/null" ]; then
required_glibc="2.33"
system_glibc="$(ldd --version | awk '/ldd/{print $NF}')"