From 0ba980418be525e27fb807bea9afea3b55ea12fb Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 14 Oct 2020 16:37:41 +0200 Subject: [PATCH] [ADD][SHELL] Add cargo bin folder to PATH --- shell/.profile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell/.profile b/shell/.profile index ca1160a..d427d8a 100644 --- a/shell/.profile +++ b/shell/.profile @@ -6,6 +6,9 @@ if { [ -n "$BASH_VERSION" ] && shopt -q login_shell; } || # Add our scripts to the path export PATH="$HOME/.scripts:$PATH" + # Add cargo binaries + export PATH="$HOME/.cargo/bin:$PATH" + # User-local bin directories export PATH="$HOME/bin:$PATH"