bashrc: Add /data/data/com.termux/files/home/bin to path

This commit is contained in:
Bill Nibz 2017-10-14 15:19:42 -04:00
parent 1d04a4cc1d
commit 994b428410

View file

@ -43,8 +43,14 @@ function show_git_info(){
#=============================================================================== #===============================================================================
# Path # Path
#=============================================================================== #===============================================================================
# rbenv # Ruby Gems
PATH="$HOME/.rbenv/bin:$PATH" if which ruby >/dev/null && which gem >/dev/null; then
PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
fi
# RVM
PATH="$HOME/.rvm/bin:$PATH"
# Custom stuff
PATH="$HOME/bin:$PATH"
# Add Python to path # Add Python to path
PYTHONPATH="${PYTHONPATH}" PYTHONPATH="${PYTHONPATH}"
export PYTHONPATH export PYTHONPATH