From aee00d41d87cbca851055fbb2f14d2e46edb09a8 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Mon, 13 May 2024 22:39:27 -0400 Subject: [PATCH] Fix script/bundle-linux (#11783) Release Notes: - N/A --- script/bundle-linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bundle-linux b/script/bundle-linux index a8d5df86d3..2108b6a408 100755 --- a/script/bundle-linux +++ b/script/bundle-linux @@ -63,7 +63,7 @@ cp "target/${target_triple}/release/cli" "${zed_dir}/bin/cli" # Libs find_libs() { - ldd target/debug/Zed |\ + ldd target/${target_triple}/release/Zed |\ cut -d' ' -f3 |\ grep -v '\<\(libstdc++.so\|libc.so\|libgcc_s.so\|libm.so\)' }