From 1739e4969ff4059a77e66dd047c497c46c85b13e Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Mon, 26 Aug 2019 10:11:21 -0400 Subject: [PATCH] Add .cargo bin to PATH --- bash/.bash_profile | 2 ++ bash/.profile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bash/.bash_profile b/bash/.bash_profile index 0c714a9..10bda84 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -7,3 +7,5 @@ [[ -f "$HOME/.bash_local" ]] && source "$HOME/.bash_local" [[ -f "$HOME/.profile" ]] && source "$HOME/.profile" + +export PATH="$HOME/.cargo/bin:$PATH" diff --git a/bash/.profile b/bash/.profile index 3938de8..392f3a5 100644 --- a/bash/.profile +++ b/bash/.profile @@ -10,3 +10,5 @@ PATH="$HOME/.local/bin":"$HOME/bin/":"$HOME/.gem/ruby/2.6.0/bin":"$HOME/.gem/rub EDITOR="$(which emacsclient)" export EDITOR + +export PATH="$HOME/.cargo/bin:$PATH"