added dependencies to Readme and glibc check to TKG

This commit is contained in:
Termuellinator
2022-06-16 08:48:02 +02:00
parent c627666705
commit 02a79aa859
2 changed files with 3 additions and 1 deletions

View File

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