bashrc: Add /data/data/com.termux/files/home/bin to path
This commit is contained in:
parent
1d04a4cc1d
commit
994b428410
1 changed files with 8 additions and 2 deletions
|
@ -43,8 +43,14 @@ function show_git_info(){
|
|||
#===============================================================================
|
||||
# Path
|
||||
#===============================================================================
|
||||
# rbenv
|
||||
PATH="$HOME/.rbenv/bin:$PATH"
|
||||
# Ruby Gems
|
||||
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
|
||||
PYTHONPATH="${PYTHONPATH}"
|
||||
export PYTHONPATH
|
||||
|
|
Loading…
Reference in a new issue