Skip to content

Commit

Permalink
linux: Fix invalid check for denylisted dependencies (#18050)
Browse files Browse the repository at this point in the history
Closes #ISSUE

Release Notes:

- N/A
  • Loading branch information
osiewicz authored Sep 19, 2024
1 parent c3f47b8 commit 1b61210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/bundle-linux
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1b61210

Please sign in to comment.