Browse Source

fix `sha256 "digest" => :tag` to `sha256 tag: "digest"`

use_builds_script
Alexandros Theodotou 2 years ago
parent
commit
6335d92ca8
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 7
      osx-brew/carla-git.rb.in

7
osx-brew/carla-git.rb.in

@ -7,10 +7,11 @@ class CarlaGit < Formula @@ -7,10 +7,11 @@ class CarlaGit < Formula
version "@CARLA_BOTTLE_VER@"
bottle do
# Fix: Calling `sha256 "digest" => :tag` in a bottle block is disabled! Use `brew style --fix` on the formula to update the style or use `sha256 tag: "digest"` instead.
#cellar :any
sha256 "0149197353ef0d86c25623d77688a0f3ce045263d76213e7174a3107d10222ea" => :catalina
sha256 "097ebd9b6fbb10cbcf46cd10b58f8305159ef090d68ae8d89049f0c0b8998d9c" => :mojave
sha256 "51ee66c8406766f33784fe139c292bad745ff43581164168f30f5ffa77171a06" => :high_sierra
sha256 catalina: "0149197353ef0d86c25623d77688a0f3ce045263d76213e7174a3107d10222ea"
sha256 mojave: "097ebd9b6fbb10cbcf46cd10b58f8305159ef090d68ae8d89049f0c0b8998d9c"
sha256 high_sierra: "51ee66c8406766f33784fe139c292bad745ff43581164168f30f5ffa77171a06"
end
depends_on "pkg-config" => :build

Loading…
Cancel
Save