Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Fixes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
dgalling committed Aug 6, 2013
1 parent 3b9781e commit 808e064
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions script/bootstrap
Expand Up @@ -15,8 +15,13 @@ BREW_PACKAGES=(python swig)
typeset -a PIP_PACKAGES
PIP_PACKAGES=(M2crypto construct progressbar setuptools pycrypto)

log 'Linking /Developer'
sudo ln -sf $DEVELOPER_ROOT //
if [[ -d '/Developer' ]]
then
log 'Skipping linking /Developer'
else
log 'Linking /Developer'
sudo ln -sf $DEVELOPER_ROOT //
fi

log 'Linking codesign_allocate'
sudo ln -sf $CODESIGN_PATH /usr/bin
Expand Down

0 comments on commit 808e064

Please sign in to comment.