check properly
This commit is contained in:
parent
ff8126640c
commit
1ec8a15b3b
1 changed files with 5 additions and 2 deletions
|
@ -31,9 +31,12 @@ if [ -d "$HOME/.local/bin" ] ; then
|
||||||
PATH="$HOME/.local/bin:$PATH"
|
PATH="$HOME/.local/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# set PATH so it includes user's .cargo/bin
|
||||||
|
if [ -d "$HOME/.local/bin" ] ; then
|
||||||
|
PATH="$HOME/.cargo/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
# autoloads
|
# autoloads
|
||||||
if [ -f "$HOME/.autoload" ] ; then
|
if [ -f "$HOME/.autoload" ] ; then
|
||||||
. ~/.aliases
|
. ~/.aliases
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
|
|
Loading…
Reference in a new issue