Skip to content

Commit

Permalink
Releasing danger-js version 11.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danger committed Jan 5, 2023
1 parent 76fbabe commit b22ae31
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions danger-js.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
class DangerJs < Formula
homepage "https://github.com/danger/danger-js"
url "https://github.com/danger/danger-js/releases/download/11.2.0/danger-macos.zip"
sha256 "8f13366ae9c6521186919d79e03518035e5139705811ee0f476227dcd75b456a"

def install
bin.install "danger"
if Hardware::CPU.intel?
url "https://github.com/danger/danger-js/releases/download/11.2.1/danger-macos-x64.zip"
sha256 "31f33cdf63cdc47d8f07c517ac2b15a704a18aded19cbdfd6a2114235b6c6b64"

def install
bin.install "danger-x64" => "danger"
end
end

if Hardware::CPU.arm?
url "https://github.com/danger/danger-js/releases/download/11.2.1/danger-macos-arm64.zip"
sha256 "ac809811d4cb9604a48eac9d8b24c01f54a5d32a3e12aaccd438b88eb7128b57"

def install
bin.install "danger-arm64" => "danger"
end
end
end

0 comments on commit b22ae31

Please sign in to comment.