Skip to content

Instantly share code, notes, and snippets.

@kun432
Created August 11, 2014 08:09
Show Gist options
  • Save kun432/f474eb4f94325d05ff8d to your computer and use it in GitHub Desktop.
Save kun432/f474eb4f94325d05ff8d to your computer and use it in GitHub Desktop.
export PATH="{{ plenv.install_path }}/bin:$PATH"
if [ -s "${HOME}/.plenv/bin" ]; then
plenv_root="${HOME}/.plenv"
export PATH="${plenv_root}/bin:$PATH"
eval "$(plenv init -)"
elif [ -s "{{ plenv.install_path }}" ]; then
plenv_root="{{ plenv.install_path }}"
export PLENV_ROOT="$plenv_root"
eval "$(plenv init -)"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment