Skip to content

Instantly share code, notes, and snippets.

@pedroborges
Last active August 29, 2015 13:56
Show Gist options
  • Save pedroborges/9213272 to your computer and use it in GitHub Desktop.
Save pedroborges/9213272 to your computer and use it in GitHub Desktop.
# Fix encoding error with Jekyll
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Fix Ruby Gems path
if which ruby >/dev/null && which gem >/dev/null; then
PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment