Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
fix homebrew sha256 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
praphael committed Jun 17, 2021
1 parent 90a7fab commit afd114d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions scripts/generate_bottle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ export SSUBPREFIX
hash=`openssl dgst -sha256 ${NAME}.tar.gz | awk 'NF>1{print $NF}'`

echo "class Eosio < Formula
# typed: false
# frozen_string_literal: true
homepage \"${URL}\"
revision 0
url \"https://github.com/eosio/eos/archive/v${VERSION}.tar.gz\"
Expand All @@ -46,12 +48,12 @@ echo "class Eosio < Formula
depends_on \"gettext\"
depends_on \"openssl@1.1\"
depends_on \"libusb\"
depends_on :macos => :mojave
depends_on :arch => :intel
depends_on macos: mojave
depends_on arch: :intel
bottle do
root_url \"https://github.com/eosio/eos/releases/download/v${VERSION}\"
sha256 \"${hash}\" => :${MAC_VERSION}
sha256 ${MAC_VERSION}: \"${hash}\"
end
def install
raise \"Error, only supporting binary packages at this time\"
Expand Down

0 comments on commit afd114d

Please sign in to comment.