fix PATH duplication

This commit is contained in:
Dmytro Meleshko 2018-08-08 08:53:46 +03:00
parent dcbce5a72c
commit 41f1fbb855
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ append() { eval "export $1=\"\$$1:$2\""; }
append PATH "$HOME/bin"
append PATH "$HOME/.local/bin"
# Rust binaries
prepend PATH "$HOME/.cargo/bin:$PATH"
prepend PATH "$HOME/.cargo/bin"
# global Yarn packages
append PATH "$HOME/.config/yarn/global/node_modules/.bin"