linux: Fix invalid check for denylisted dependencies (#18050)

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-09-19 11:40:01 +02:00 committed by GitHub
parent c3f47b8040
commit 1b612108ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -56,7 +56,7 @@ strip --strip-debug "${target_dir}/${target_triple}/release/remote_server"
# Ensure that remote_server does not depend on libssl nor libcrypto, as we got rid of these deps.
ldd "${target_dir}/${target_triple}/release/remote_server" | grep -q 'libcrypto\|libssl'
! ldd "${target_dir}/${target_triple}/release/remote_server" | grep -q 'libcrypto\|libssl'
suffix=""
if [ "$channel" != "stable" ]; then