Adds .local/bin to the path

This commit is contained in:
Nicolas Bertrand 2021-07-02 15:38:33 +02:00
parent c97c60e41a
commit 2cd6e3aea3
1 changed files with 6 additions and 0 deletions

View File

@ -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"