From 6af0ed1d87c3580ea2d872721b09bed6a32191d0 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Fri, 20 Oct 2017 12:17:55 +0200 Subject: [PATCH] Set the local bin directory to ~/.local/bin instead of ~/bin --- .setpath.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.setpath.sh b/.setpath.sh index 491ecb7..bbe8fa7 100644 --- a/.setpath.sh +++ b/.setpath.sh @@ -1,4 +1,4 @@ -BIN_PATH="$HOME/bin" +BIN_PATH="$HOME/.local/bin" if [ -d "$BIN_PATH" ]; then found=$(echo $PATH | tr ':' '\n' | grep -w "$BIN_PATH") [ ! "$found" ] && export PATH="$BIN_PATH:$PATH"