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?
263 views Asked by user17264422 At
1
One way that I think of is to create a separate pre-release
taporformula, so that you can install thattaporformulato do the pre-release testing.Let's say if you sue formula approach, you can have
formula.rbandformula-rc.rbin the same tap. And you canbrew install/test formula-rcto achieve your goal.