buo / homebrew-cask-upgrade

A command line tool for upgrading every outdated app installed by Homebrew Cask
MIT License
2.4k stars 90 forks source link

brew cu state ignored #60

Closed alphatea closed 6 years ago

alphatea commented 7 years ago
qq20170520-234759 2x

I want upgrade pycharm, but the state [ignored].....

azizuysal commented 7 years ago

Same problem with other apps too. What is ignored state and why are some apps marked as ignored?

tsilcher commented 7 years ago

+1 Same issue here. I have to do a manual "brew cask reinstall" to update these casks marked as ignored.

azizuysal commented 7 years ago

This is what I use as a workaround (in fish shell):

for app in (brew cask outdated --greedy)
    brew cask install --force $app
end
a-omsk commented 7 years ago

another solution

brew cask outdated --greedy | xargs brew cask install --force
filippoliverani commented 7 years ago

I think auto-updating apps are marked ignored by default, you can pass -a option (Include apps that auto-update in the upgrade) to force the upgrade.