From 18f36068570bf0d3f804abf89631bc9ffce3d5d6 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Tue, 31 Mar 2026 12:27:10 +0100 Subject: Load profile & ensure local directories exist --- bash_profile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bash_profile b/bash_profile index 53aad16..183cb74 100644 --- a/bash_profile +++ b/bash_profile @@ -2,10 +2,15 @@ # # BASH PROFILE # +# Load default profile if exists +[[ -f "$HOME/.profile" ]] && source "$HOME/.profile" # Load bashrc [[ -f "$HOME/.bashrc" ]] && source "$HOME/.bashrc" +# Ensure local directories exist +mkdir -p $HOME/.local/{lib,bin} $HOME/.cache + # Custom Scripts scripts="$HOME/repositories/scripts" [[ -d "$scripts" ]] && PATH="$PATH:$scripts" -- cgit