From c2e7816fa6208603357231ade43798282d3f6de7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0tefan=20Bystriansky?= Date: Wed, 13 Jan 2021 14:17:14 +0100 Subject: [PATCH] PATH --- .profile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.profile b/.profile index c9db459..74b7b9a 100644 --- a/.profile +++ b/.profile @@ -20,3 +20,9 @@ fi if [ -d "$HOME/bin" ] ; then PATH="$HOME/bin:$PATH" fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/.local/bin" ] ; then + PATH="$HOME/.local/bin:$PATH" +fi +