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
|
# 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
|
||||||
|
|
Loading…
Reference in a new issue