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
# abcdev brewfile | |
# last update 19.01.2017 | |
tap 'caskroom/cask' | |
tap 'caskroom/fonts' | |
cask_args appdir: '/Applications' | |
# must-have packages | |
cask 'java' |
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
#!/bin/bash | |
echo "Lets bootstrap -> install rust, homebrew and make use of a brewfile !" | |
command_exists () { | |
type "$1" &> /dev/null ; | |
} | |
if command_exists brew; then | |
brew update | |
brew doctor |