From fc1478567e4b6bd9a3ffb417bfa5b044f96498d6 Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Tue, 2 Dec 2025 09:57:56 +0100 Subject: [PATCH] Fix path loading in .profile --- bash/.profile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bash/.profile b/bash/.profile index 0a5cbba..fd8e913 100644 --- a/bash/.profile +++ b/bash/.profile @@ -38,10 +38,6 @@ export VIRTUAL_ENV_DISABLE_PROMPT=1 export GOPATH="$HOME/.local/share/Go" export GOBIN="$GOPATH/bin" -source "$HOME/.profile.d/homebrew.sh" -source "$HOME/.profile.d/mise.sh" -source "$HOME/.profile.d/java.sh" - appendpath() { local location="${1}" case ":$PATH:" in @@ -56,3 +52,7 @@ appendpath "$HOME/.cargo/bin" appendpath "/home/linuxbrew/.linuxbrew/bin" appendpath "$HOME/.config/emacs/bin" unset appendpath + +source "$HOME/.profile.d/homebrew.sh" +source "$HOME/.profile.d/mise.sh" +source "$HOME/.profile.d/java.sh"