You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice if hhvm and hhvm-x.x were separate packages instead of aliasing hhvm to the latest version, as this alias breaks when homebrew is upgraded.
For example:
brew install hhvm installs hhvm-4.61
Wait for hhvm 4.62 to be released
brew upgrade
hhvm --version indicates that I'm still on 4.61
???
It's especially confusing to try and rectify the situation after a brew upgrade as brew uninstall hhvm complains that I don't have hhvm-4.62 installed which is... correct but not a helpful error message.
My workaround is to brew uninstall hhvm && brew upgrade && brew install hhvm which is annoying and takes more time. If I forget to uninstall before upgrading it's brew uninstall hhvm-4.61 && brew install hhvm. Since HHVM has such a frequent release cadence trying to keep up-to-date with homebrew in this way is a bit tiresome.
It would be nice if
hhvmandhhvm-x.xwere separate packages instead of aliasinghhvmto the latest version, as this alias breaks when homebrew is upgraded.For example:
brew install hhvminstalls hhvm-4.61brew upgradehhvm --versionindicates that I'm still on 4.61It's especially confusing to try and rectify the situation after a
brew upgradeasbrew uninstall hhvmcomplains that I don't have hhvm-4.62 installed which is... correct but not a helpful error message.My workaround is to
brew uninstall hhvm && brew upgrade && brew install hhvmwhich is annoying and takes more time. If I forget to uninstall before upgrading it'sbrew uninstall hhvm-4.61 && brew install hhvm. Since HHVM has such a frequent release cadence trying to keep up-to-date with homebrew in this way is a bit tiresome.