summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2024-07-23 08:47:18 +0200
committerJonas Smedegaard <dr@jones.dk>2024-07-23 08:47:18 +0200
commit1dcce5cae3fa4b3c8c92b9ba3ebc7c74dfb1a2e1 (patch)
treeaca9f26938de2d257e6230336b635891cb15e335
parent5e4887dd59999116a0c381aa0131ee36b8e0e3f3 (diff)
sync with skel: cover path ~/.local/bin
-rw-r--r--.profile5
1 files changed, 5 insertions, 0 deletions
diff --git a/.profile b/.profile
index b285ba5..0344e09 100644
--- a/.profile
+++ b/.profile
@@ -21,6 +21,11 @@ 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
+
if [ -d /var/cache/pbuilder/ccache ]; then
CCACHE_DIR="/var/cache/pbuilder/ccache"
fi