From ed500dacb664699a9d92565b530b319d2eaab67d Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 9 Apr 2025 20:55:10 -0600 Subject: [PATCH] Fix typo in symbolicate script (#28456) Fix silly typo in symbolicate script Release Notes: - N/A --- script/bundle-mac | 2 +- script/symbolicate | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/script/bundle-mac b/script/bundle-mac index 2360f8106c..18dfe90815 100755 --- a/script/bundle-mac +++ b/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 \ diff --git a/script/symbolicate b/script/symbolicate index ab156fd68c..743b5872ab 100755 --- a/script/symbolicate +++ b/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