dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit cd1a7d1b1aea0544caded3c951ba99dbcb9ac5fc
parent a817ac923e9aed45f3b2b74318430798224f13df
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Sun,  3 Jun 2018 15:10:31 +0200

Better cask selection message for upgrade

Diffstat:
Mbin/updatemaster | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/updatemaster b/bin/updatemaster @@ -96,7 +96,7 @@ if command -v brew &> /dev/null; then if [ $all_casks = 1 ] || [ $all = 1 ]; then brew cask upgrade --gredy elif [ $select_casks = 1 ]; then - read -p "Which casks would you like to upgrade? " -a CASKS; + read -p "Casks to upgrade (empty string cancels upgrade): " -a CASKS; for i in ${CASKS[@]}; do if ! brew cask upgrade $i; then echo -e "Could not upgrade cask $i."; fi done