diff --git a/setup/bootstrap.sh b/setup/bootstrap.sh index 35506b3..96efdb4 100755 --- a/setup/bootstrap.sh +++ b/setup/bootstrap.sh @@ -2,6 +2,9 @@ # New Mac bootstrap +# Ask for the administrator password upfront +sudo -v + . stuff.sh . bash.sh . consolas.sh diff --git a/setup/stuff.sh b/setup/stuff.sh index 595efac..017c0d1 100755 --- a/setup/stuff.sh +++ b/setup/stuff.sh @@ -2,6 +2,8 @@ # Installs Homebrew, Git, git-extras, git-friendly, Node.js, configures Apache, PHP, MySQL, etc. +# Ask for the administrator password upfront +sudo -v # Install Homebrew command -v brew >/dev/null 2>&1 || ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)" @@ -53,7 +55,9 @@ brew cleanup # Node.js brew install node - npm install -g grunt npm install -g jshint npm install -g bower + +# Python +sudo pip install fabric \ No newline at end of file