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
I can't seem to get the update block to ever trigger. I have a package installed via this Homebrew provider, there is a newer one available and I've specified ensure => latest however nothing gets upgraded. I've tried setting ensure to a specific version, 3.3 for example but it fails with package-name-3.3 not found.
When setting ensure => latest I've seen Listing installed packages and Found package package-name in the logs (among some /usr/bin/stat) calls, but no calls to brew upgrade
Any ideas? Is there something I'm missing @TheKevJames?
The text was updated successfully, but these errors were encountered:
@seanabraham is this brew or brew cask. Is it happening on a specific package? brew cask will only update/upgrade packages that don't have their own auto-updater.
To add to this I just started having issues when a package, in this example, packer is being installed using the latest parameter and the package is not already on the system. The module will try to upgrade it instead of installing it and will fail.
Not sure if something changed on brew recently. Maybe the old behaviour was that if you tried to do an upgrade and the package wasn't present it would fall-back to do an install?
To fix this, we'll need to do the following when using latest:
if the package IS already installed use upgrade
if the package is NOT already installed, fallback and use install.
I can't seem to get the
update
block to ever trigger. I have a package installed via this Homebrew provider, there is a newer one available and I've specifiedensure => latest
however nothing gets upgraded. I've tried settingensure
to a specific version,3.3
for example but it fails withpackage-name-3.3
not found.When setting
ensure => latest
I've seenListing installed packages
andFound package package-name
in the logs (among some/usr/bin/stat
) calls, but no calls tobrew upgrade
Any ideas? Is there something I'm missing @TheKevJames?
The text was updated successfully, but these errors were encountered: