Adds .local/bin to the path
This commit is contained in:
parent
c97c60e41a
commit
2cd6e3aea3
|
@ -22,6 +22,12 @@ if [ -d $HOME/.cargo ]; then
|
|||
fi
|
||||
fi
|
||||
|
||||
# .local path
|
||||
if [ -d $HOME/.local/bin ]; then
|
||||
export PATH=$HOME/.local/bin:$PATH
|
||||
fi
|
||||
|
||||
|
||||
# Wasmer path
|
||||
if [ -d $HOME/.wasmer ]; then
|
||||
export WASMER_DIR="$HOME/.wasmer"
|
||||
|
|
Loading…
Reference in New Issue