This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
if [[ ! -L lib || ! -L bootstrap ]]; then | |
[[ -z $(which curl) ]] && { | |
printf "Curl is required for this operation. Please install it with\n" | |
printf "brew install curl\n" | |
exit 1 | |
} | |
curl -fsSL "http://bit.ly/bashmatic-bootstrap" | /usr/bin/env bash | |
fi |