Skip to content

Commit

Permalink
fix: don't require go and make for ordinary homebrew installation, fixes
Browse files Browse the repository at this point in the history
 ddev#6156 [skip ci]
  • Loading branch information
rfay committed Nov 15, 2024
1 parent fae8423 commit c47d6b5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,10 @@ brews:
- name: mkcert
custom_block: |
head "https://github.com/ddev/ddev.git", branch: "master"
depends_on "go" => :build
depends_on "make" => :build
if build.head?
depends_on "go" => :build
depends_on "make" => :build
end
install: |
if build.head?
os = OS.mac? ? "darwin" : "linux"
Expand Down Expand Up @@ -222,8 +224,10 @@ brews:
- name: mkcert
custom_block: |
head "https://github.com/ddev/ddev.git", branch: "master"
depends_on "go" => :build
depends_on "make" => :build
if build.head?
depends_on "go" => :build
depends_on "make" => :build
end
install: |
if build.head?
os = OS.mac? ? "darwin" : "linux"
Expand Down

0 comments on commit c47d6b5

Please sign in to comment.