Say a homebrew package was released for internal testing purposes. Basically a release candidate. How do I mark the homebrew package as a release candidate so that it doesn't get installed when a user tries to install the latest package? I need the latest stable package to get installed.
How do you mark a homebrew package as a release candidate?
278 views Asked by user17264422 At
1
One way that I think of is to create a separate pre-release
tap
orformula
, so that you can install thattap
orformula
to do the pre-release testing.Let's say if you sue formula approach, you can have
formula.rb
andformula-rc.rb
in the same tap. And you canbrew install/test formula-rc
to achieve your goal.