From 5d98997075a63d1047c0edd9eefb1bc36da41472 Mon Sep 17 00:00:00 2001 From: John Mertz Date: Wed, 31 Jan 2024 22:34:45 -0700 Subject: [PATCH] Delay PATH until after DISTROBOX --- bash/bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/bashrc b/bash/bashrc index 5f46fbb1c..099f4c9ca 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -6,9 +6,6 @@ function last_command { echo "${h##*([[:space:])+([[:digit:]])+([[:space:]])}" } -# Configure PATH -source "$HOME/.dotfiles/bash/path" - # If not running interactively, don't do anything case $- in *i*) ;; @@ -40,6 +37,9 @@ fi fi +# Configure PATH +source "$HOME/.dotfiles/bash/path" + # Load aliases if [ -f ${HOME}/.dotfiles/bash/bash_aliases ]; then