commit 448ef562aba7cf3adf7e39c3f93e8eb6f3ce8d10
parent 67e8fdda7dc2b94de38d59917f3c2ed1252d1b2b
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Sun, 31 May 2015 15:29:06 +0200
add tap to emacs-port and fix loops
Diffstat:
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/osx-install.sh b/osx-install.sh
@@ -3,6 +3,8 @@
# install homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
+brew tap railwaycat/emacsport
+
# from `brew list`
brews=( "autoconf"\
"automake"\
@@ -31,7 +33,7 @@ brews=( "autoconf"\
"youtube-dl"\
"zsh" )
-for brew in $brews; do
+for brew in "${brews[@]}"; do
brew install $brew
done
@@ -68,6 +70,7 @@ casks=( "adobe-creative-cloud" \
"vlc"\
"xquartz" )
-for cask in $casks; do
+for cask in "${casks[@]}"; do
+ echo $cask
brew cask install $cask
done