This file contains 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 | |
# | |
# Bootstrap script for setting up a macOS machine | |
# | |
# Requires xcode and tools! | |
xcode-select -p || exit "XCode must be installed! (use the app store)" | |
echo "Starting bootstrapping" |