Fix script/bundle-linux (#11783)

Conrad Irwin created

Release Notes:

- N/A

Change summary

script/bundle-linux | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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\)'
 }