From 5967399431e8b6b1ac44338a2ac553b94a56981b Mon Sep 17 00:00:00 2001 From: finga Date: Thu, 19 Dec 2019 18:32:27 +0100 Subject: [PATCH] fix rust $PATH bug --- .zprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zprofile b/.zprofile index aed1375..5b84201 100644 --- a/.zprofile +++ b/.zprofile @@ -35,7 +35,7 @@ if [ -d "$HOME/.local/bin" ] ; then fi # set PATH so it includes user's .cargo/bin -if [ -d "$HOME/.local/bin" ] ; then +if [ -d "$HOME/.cargo/bin" ] ; then PATH="$HOME/.cargo/bin:$PATH" fi