We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9e782f commit c3d4187Copy full SHA for c3d4187
1 file changed
tasks/scripts/verify-glibc-symbols.sh
@@ -59,8 +59,17 @@ for binary in "$@"; do
59
fi
60
61
echo "==> Inspecting $binary"
62
- file "$binary" || true
63
- ldd "$binary" || true
+ if command -v file >/dev/null 2>&1; then
+ file "$binary" || true
64
+ else
65
+ echo "file: not available"
66
+ fi
67
+
68
+ if command -v ldd >/dev/null 2>&1; then
69
+ ldd "$binary" || true
70
71
+ echo "ldd: not available"
72
73
74
highest=
75
found=0
0 commit comments