Compare commits

...

1 Commits

Author SHA1 Message Date
Michael Telatynski
0884e966fe
Improve glibc check to also check keytar
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2024-05-14 10:45:49 +01:00
2 changed files with 4 additions and 2 deletions

View File

@ -139,7 +139,9 @@ jobs:
fi
./scripts/glibc-check.sh dist/linux-*unpacked/element-desktop*
./scripts/glibc-check.sh dist/linux-*unpacked/resources/app.asar.unpacked/node_modules/matrix-seshat/index.node
for filename in $FILES; do
./scripts/glibc-check.sh $filename
done
env:
ARCH: ${{ steps.config.outputs.arch }}

View File

@ -36,7 +36,7 @@ vercomp() {
IFS="
"
VERS=$(objdump -T "$BINARY" | grep GLIBC | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -u)
VERS=$(objdump -T "$BINARY" | grep GLIBC_ | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -u)
for VER in $VERS; do
vercomp "$VER" "$MAX_VER"