Skip to content

Commit

Permalink
Fix homebrew
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Nov 20, 2023
1 parent 9991790 commit 17bb3ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/templates/homebrew.martin.rb.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 17bb3ee

Please sign in to comment.