4 lines
72 B
Bash
4 lines
72 B
Bash
|
if [[ -d "$HOME/.cargo/bin" ]]; then
|
||
|
path=($HOME/.cargo/bin $path)
|
||
|
fi
|