From db29f94b28b094c574daf91be59d30bb9a4f5c9e Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Tue, 22 Jul 2025 13:11:21 +0100 Subject: [PATCH] bash: add ~/.local/bin to path if it exists --- bashrc.d/local.bash | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 bashrc.d/local.bash diff --git a/bashrc.d/local.bash b/bashrc.d/local.bash new file mode 100644 index 0000000..41b5e39 --- /dev/null +++ b/bashrc.d/local.bash @@ -0,0 +1,4 @@ +if [ -d "$HOME/.local/bin" ] ; then + addpath "$HOME/.local/bin" +fi +