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 2e250fef266a3dcc2574bd550b0e955eba4b4d57
parent fc6582b9e26929d704e843448fd8e29630b63f8f
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Thu,  4 Feb 2016 10:20:49 -0800

choose casks one by one

Diffstat:
Mosx-install.sh | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/osx-install.sh b/osx-install.sh @@ -86,8 +86,11 @@ read -p "Do you want to install brew casks? [y/n]" -n 1 -r echo if [[ $REPLY =~ ^[Yy]$ ]]; then for cask in "${casks[@]}"; do - echo $cask - brew cask install $cask + read -p "Do you want to install $cask? [y/n]" -n 1 -r + echo + if [[ $REPLY =~ ^[Yy]$ ]]; then + brew cask install $cask + fi done fi