Created
August 11, 2014 08:09
-
-
Save kun432/f474eb4f94325d05ff8d to your computer and use it in GitHub Desktop.
This file contains 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
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