What’s the best workaround for not having “cabal upgrade”?
This bit of shell hackery works for me on OS X: cabal list –simple-output –installed | awk ‘{print $1}’ | uniq | xargs -I {} cabal install {} –reinstall EDIT: Now forces a reinstall, and avoids installing a package more than once when more than one version is present. Thanks for the comments! EDIT YEARS … Read more