From 32f464168a981c1e66453855f0a747f08b07a194 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 17 Feb 2020 21:59:43 +0100 Subject: [PATCH] [UPDATE][SHELL] Remove '~/.local/bin' from PATH --- shell/.profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/.profile b/shell/.profile index 4cfe86b..a279d27 100644 --- a/shell/.profile +++ b/shell/.profile @@ -10,7 +10,7 @@ if { [ -n "$BASH_VERSION" ] && shopt -q login_shell; } || export PATH="$HOME/.cargo/bin:$PATH" # User-local bin directories - export PATH="$HOME/bin:$HOME/.local/bin:$PATH" + export PATH="$HOME/bin:$PATH" # Color ls output depending on filetype with dircolors [ -e "/etc/DIR_COLORS" ] && DIR_COLORS="/etc/DIR_COLORS"