Skip to content

Instantly share code, notes, and snippets.

@olbrichj
Last active July 25, 2017 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olbrichj/d6e7c01b5d4c020d489ce136911fb606 to your computer and use it in GitHub Desktop.
Save olbrichj/d6e7c01b5d4c020d489ce136911fb606 to your computer and use it in GitHub Desktop.
#!/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