johnthagen
johnthagen

Reputation: 9189

How can a --HEAD dependency be specified in homebrew-bundle

I am trying to specify the following command into a Brewfile for use in homebrew-bundle:

brew install --HEAD open-ocd

I can get a normal install to work if the Brewfile contains:

brew "open-ocd"

But I don't see any examples on how to properly specify --HEAD within a Brewfile.

Upvotes: 1

Views: 337

Answers (1)

johnthagen
johnthagen

Reputation: 9189

Using brew dump I was able to determine that the correct Brewfile is:

brew "open-ocd", args: ["HEAD"]

Upvotes: 2

Related Questions