Last active
August 29, 2015 14:00
-
-
Save marknorgren/793a3e5b6f2eab901abe to your computer and use it in GitHub Desktop.
fix for updating (bundle install) octopress on Mavericks
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
brew install apple-gcc42 | |
#http://stackoverflow.com/a/22704271/406 | |
export CFLAGS=-Qunused-arguments | |
export CPPFLAGS=-Qunused-arguments | |
#http://stackoverflow.com/a/14353864/406 | |
$git clone https://github.com/erizhang/octopress.git octopress | |
$cd octopress/ | |
$sudo gem install bundler | |
$sudo gem install RedCloth -v '4.2.9' | |
$bundle install | |
$rake install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment