Update setup-mavericks.bash

This commit is contained in:
AJ ONeal 2014-12-27 18:12:13 -07:00
parent 4c35059267
commit 3d1ad9385a
1 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,13 @@ else
echo "fail2ban already installed"
fi
if [ -z "$(which pkg-config | grep pkg-config)" ]; then
echo "installing pkg-config..."
brew install pkg-config
else
echo "fail2ban already installed"
fi
# node
CUR_NODE_VER=$(node -v 2>/dev/null)
if [ -n "$(which node | grep node)" ] && [ "${NODE_VER}" == "$(node -v 2>/dev/null)" ]; then