.files/bash/.bashrc.d/path.sh

7 lines
116 B
Bash
Raw Permalink Normal View History

# add cargo to PATH
if ! [[ "$PATH" =~ "$HOME/.cargo/bin:" ]]
then
PATH="$HOME/.cargo/bin:$PATH"
fi
export PATH