Skip to content

Commit

Permalink
Fix homebrew conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin committed Dec 5, 2013
1 parent 8b21a94 commit 8a8c7a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mac
Expand Up @@ -34,7 +34,7 @@ if [[ -f /etc/zshenv ]]; then
fi fi
### end mac-components/zsh-fix ### end mac-components/zsh-fix


if (( $+commands[brew] )); then if (( ! $+commands[brew] )); then
fancy_echo "Installing Homebrew, a good OS X package manager ..." fancy_echo "Installing Homebrew, a good OS X package manager ..."
ruby <(curl -fsS https://raw.github.com/mxcl/homebrew/go/install) ruby <(curl -fsS https://raw.github.com/mxcl/homebrew/go/install)
brew update brew update
Expand Down
2 changes: 1 addition & 1 deletion mac-components/homebrew
@@ -1,4 +1,4 @@
if (( $+commands[brew] )); then if (( ! $+commands[brew] )); then
fancy_echo "Installing Homebrew, a good OS X package manager ..." fancy_echo "Installing Homebrew, a good OS X package manager ..."
ruby <(curl -fsS https://raw.github.com/mxcl/homebrew/go/install) ruby <(curl -fsS https://raw.github.com/mxcl/homebrew/go/install)
brew update brew update
Expand Down

0 comments on commit 8a8c7a7

Please sign in to comment.