Last active
July 25, 2017 20:53
-
-
Save olbrichj/d6e7c01b5d4c020d489ce136911fb606 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# =========== Install brew ========== | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew update | |
# ========= Install Apps ========== | |
brew tap Homebrew/bundle | |
brew bundle | |
# ========== Linking OpenSSL ========== | |
ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/ | |
ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/ | |
ln -s /usr/local/Cellar/openssl/<version>/bin/openssl /usr/local/bin/openssl | |
ln -s /usr/local/Cellar/openssl/<version>/include/openssl /usr/local/include/openssl | |
Replace <version> with the installed openssl version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment