Fix typo in symbolicate script (#28456)

Conrad Irwin created

Fix silly typo in symbolicate script

Release Notes:

- N/A

Change summary

script/bundle-mac  | 2 +-
script/symbolicate | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)

Detailed changes

script/bundle-mac 🔗

@@ -209,7 +209,7 @@ function prepare_binaries() {
     echo "Gzipping dSYMs for $architecture"
     gzip -f target/${architecture}/${target_dir}/Zed.dwarf
 
-    echo "Uploading dSYMs${architecture} for $architecture to by_uuid/${uuid}.dwarf.gz"
+    echo "Uploading dSYMs${architecture} for $architecture to by-uuid/${uuid}.dwarf.gz"
     upload_to_blob_store_public \
         "zed-debug-symbols" \
         target/${architecture}/${target_dir}/Zed.dwarf.gz \

script/symbolicate 🔗

@@ -59,11 +59,10 @@ else # ips file
         echo "You need to update your symbolicate: cargo install symbolicate"
         exit 1
     fi
-
     dsym="$uuid.dwarf"
     if [[ ! -f target/dsyms/$dsym ]]; then
         echo "Downloading $dsym..."
-        curl -f -o target/dsyms/$dsym.gz "https://zed-debug-symbols.nyc3.digitaloceanspaces.com/by_uuid/${uuid}.dwarf.gz" ||
+        curl -f -o target/dsyms/$dsym.gz "https://zed-debug-symbols.nyc3.digitaloceanspaces.com/by-uuid/${uuid}.dwarf.gz" ||
             curl -f -o target/dsyms/$dsym.gz "https://zed-debug-symbols.nyc3.digitaloceanspaces.com/$channel/Zed-$version-$arch.dwarf.gz"
         gunzip  target/dsyms/$dsym.gz
     fi