Skip to content

Commit

Permalink
Release Supabase CLI (Beta) (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwicopple authored Dec 7, 2024
1 parent 0555fa3 commit 44798fe
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions supabase-beta.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
class SupabaseBeta < Formula
desc "Supabase CLI (Beta)"
homepage "https://supabase.com"
version "2.0.2"
version "2.0.3"
license "MIT"

on_macos do
if Hardware::CPU.arm?
url "https://github.com/supabase/cli/releases/download/v2.0.2/supabase_darwin_arm64.tar.gz"
sha256 "6140718a68e924bfbc6c0993d9bedcef628201b192abf491110c1da48188cccd"
url "https://github.com/supabase/cli/releases/download/v2.0.3/supabase_darwin_arm64.tar.gz"
sha256 "80f0a802c0aeabd217afb4e7127ccd84b9ace7be6a1fbe06992cd7dd8a1d326c"

def install
bin.install "supabase"
Expand All @@ -21,8 +21,8 @@ def install
end
end
if Hardware::CPU.intel?
url "https://github.com/supabase/cli/releases/download/v2.0.2/supabase_darwin_amd64.tar.gz"
sha256 "d8995696cbc650eddaf868d73fb0426f9a2f4defdd08eba4c0cfe13f094c3ba9"
url "https://github.com/supabase/cli/releases/download/v2.0.3/supabase_darwin_amd64.tar.gz"
sha256 "4e8beb40772bfa8d6e04e9846763353c9d0b67d3a52fee03316312beae5dfe82"

def install
bin.install "supabase"
Expand All @@ -35,8 +35,8 @@ def install

on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/supabase/cli/releases/download/v2.0.2/supabase_linux_arm64.tar.gz"
sha256 "5159b3dc6a4c01a121b27a06b510028dd55b50364de44149bb54c92769d62d6c"
url "https://github.com/supabase/cli/releases/download/v2.0.3/supabase_linux_arm64.tar.gz"
sha256 "74242444155f3e9023f98ee7c43d4fd282e8bdc937056114d1ba4d3b6bb69624"

def install
bin.install "supabase"
Expand All @@ -46,8 +46,8 @@ def install
end
end
if Hardware::CPU.intel?
url "https://github.com/supabase/cli/releases/download/v2.0.2/supabase_linux_amd64.tar.gz"
sha256 "3a138cd2d81ee1d7d96e3dd74370386bff00b2a6966f78ced672c17a274d5857"
url "https://github.com/supabase/cli/releases/download/v2.0.3/supabase_linux_amd64.tar.gz"
sha256 "0e4520c18b271ed514ce29db103243ebc4f9d9de4e621fea841d4c583a91f6e4"

def install
bin.install "supabase"
Expand Down

0 comments on commit 44798fe

Please sign in to comment.