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