You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
grep -Ev '^.*\.node:|^\t(/usr/lib/lib(System\.|c\+\+|objc))|/System/Library/Frameworks/(CoreFoundation|NetworkExtension|Foundation|Network)\.framework'; then
32
+
grep -Ev '\.node:|@rpath/libsession_util_nodejs|/usr/lib/libc\+\+|/usr/lib/libSystem'; then
31
33
bad=1
32
34
fi
33
35
elif [ "$RUNNER_OS" == "Linux" ]; then
34
-
if ldd "$node_file" | grep -Ev '(linux-vdso|ld-linux-(x86-64|armhf|aarch64)|lib(pthread|dl|rt|stdc\+\+|gcc_s|c|m))\.so'; then
36
+
ldd "$node_file"
37
+
if ldd "$node_file" | grep -Ev 'linux-vdso|ld-linux|libstdc\+\+|libgcc_s|libc\.so|libm\.so'; then
35
38
bad=1
36
39
fi
37
40
else
38
-
echo -e "\n\n\n\n\e[31;1mDon't know how to check linked libs on $RUNNER_OS\e[0m\n\n\n"
41
+
echo -e "\nDon't know how to check linked libs on $RUNNER_OS\n"
0 commit comments