dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 7ff473696a7f43beaa40121d1c562071278c66b6
parent df14b0f402bd2751979987f6bb702789f9f69078
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Tue, 15 Jul 2014 13:56:16 +0200

verbose output in brew commands

Diffstat:
Mbin/uu | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/uu b/bin/uu @@ -7,9 +7,9 @@ if [[ "$UNAMESTR" == 'Linux' ]]; then sudo apt-get autoremove && \ sudo apt-get clean elif [[ "$UNAMESTR" == 'Darwin' ]]; then - brew update && \ - brew upgrade && \ - brew cleanup + brew update -v && \ + brew upgrade -v && \ + brew cleanup -v else echo "Platform not supported" exit 1