dotfiles

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

commit 1332db8569e24f62c07b9707e98112d5f2d3ed15
parent 03f7beb8c72afd984cf7b7aecb7bbc98eedbcb79
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Mon, 23 Apr 2018 12:53:43 +0200

Modified brewmaster to list all changes and then wait for user input.

Diffstat:
M.commonprofile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.commonprofile b/.commonprofile @@ -48,7 +48,10 @@ notify() { brewmaster() { brew update; brew update; - { brew outdated; brew cask outdated; } | less; + brew outdated; + brew cask outdated; + /usr/bin/read -n1 -p "Press any key to continue..." -s; + echo "Continuing with upgrade." brew upgrade; brew cask upgrade; brew cleanup -s;