From 17bb3ee594432e899665b73d3c6b40efa5e7d233 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Mon, 20 Nov 2023 02:49:53 -0500 Subject: [PATCH] Fix homebrew --- .github/templates/homebrew.martin.rb.j2 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/templates/homebrew.martin.rb.j2 b/.github/templates/homebrew.martin.rb.j2 index fcf4c6fe1..17c06f121 100644 --- a/.github/templates/homebrew.martin.rb.j2 +++ b/.github/templates/homebrew.martin.rb.j2 @@ -11,23 +11,23 @@ class Martin < Formula on_macos do on_arm do - sha256 "{{ macos_arm_sha256 }}}" - url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-Darwin-aarch64.tar.gz" + sha256 "{{ macos_arm_sha256 }}" + url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-aarch64-apple-darwin.tar.gz" end on_intel do sha256 "{{ macos_intel_sha256 }}" - url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-Darwin-x86_64.tar.gz" + url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-x86_64-apple-darwin.tar.gz" end end on_linux do on_arm do sha256 "{{ linux_arm_sha256 }}" - url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-Linux-aarch64-musl.tar.gz" + url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-aarch64-unknown-linux-musl.tar.gz" end on_intel do sha256 "{{ linux_intel_sha256 }}" - url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-Linux-x86_64-musl.tar.gz" + url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-x86_64-unknown-linux-musl.tar.gz" end end