From 8d30e01771f2b1a1b2824fd70059f82ad8f55074 Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Sat, 17 Feb 2018 20:11:31 +0100 Subject: [PATCH] Add ~/.local/bin to PATH. --- home/dotfiles/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/dotfiles/profile b/home/dotfiles/profile index d5c6c9a..8de80a6 100644 --- a/home/dotfiles/profile +++ b/home/dotfiles/profile @@ -167,7 +167,7 @@ section_end # home bin section "home bin" if [ $PROFILE_BIN -gt 0 ]; then - PATH="$HOME/bin:$PATH" + PATH="$HOME/bin:$HOME/.local/bin:$PATH" export PATH fi section_end