Fixed up bashrc
This commit is contained in:
11
dot/bashrc
11
dot/bashrc
@ -1,8 +1,11 @@
|
||||
# NTCNA V2X development
|
||||
|
||||
# Python and VirtualEnv
|
||||
if [ -d ~/.local/bin ]; then
|
||||
export PATH=~/.local/bin:$PATH
|
||||
if [ -d $HOME/.local/bin ]; then
|
||||
export PATH=$HOME/.local/bin:$PATH
|
||||
else
|
||||
mkdir -p $HOME/.local/bin
|
||||
export PATH=$HOME/.local/bin:$PATH
|
||||
fi
|
||||
if [ -x /usr/local/bin/virtualenvwrapper.sh ]; then
|
||||
VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
|
||||
@ -10,8 +13,8 @@ if [ -x /usr/local/bin/virtualenvwrapper.sh ]; then
|
||||
fi
|
||||
|
||||
# Android Studio
|
||||
if [ -d ~/android-studio ]; then
|
||||
export PATH=$PATH:~/android-studio/bin
|
||||
if [ -d $HOME/android-studio ]; then
|
||||
export PATH=$PATH:$HOME/android-studio/bin
|
||||
fi
|
||||
|
||||
# Marben ASN.1 compiler
|
||||
|
||||
Reference in New Issue
Block a user