From 88e3697d9d5ae4d086f7dcb08206328849de948b Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 3 Oct 2016 22:41:42 +0200 Subject: [PATCH] brew-run: Update commands for latest Homebrew Use "outdated --verbose" and "upgrade --cleanup", "cleanup" and "prune" isn't necessary any more. And show a header before calling "linkups". --- cmd/brew-run | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/cmd/brew-run b/cmd/brew-run index 9232035..7d499e4 100755 --- a/cmd/brew-run +++ b/cmd/brew-run @@ -22,15 +22,14 @@ outdated=$( brew outdated --quiet | wc -l | tr -d '\t ' ) if [ $outdated -gt 0 ]; then echo ax_msg - "$outdated formula outdated:" - brew outdated || ax_abort "Failed to list outdated packages!" - + brew outdated --verbose || ax_abort "Failed to list outdated packages!" echo - brew upgrade --all || ax_abort "Upgrade failed!" - brew linkapps --local || ax_abort "Linking of applications failed!" + brew upgrade --cleanup || ax_abort "Upgrade failed!" echo - brew cleanup || ax_abort "\"brew cleanup\" failed!" - brew prune || ax_abort "\"brew prune\" failed!" + + ax_msg - "Linking applications ..." + brew linkapps --local || ax_abort "Linking of applications failed!" else ax_msg 0 "Nothing outdated." fi -- 2.39.2