From 8630d8e3cc306a59ecf1a4fd7d4c2093faaa3670 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 7 Jul 2022 18:21:24 -0300 Subject: Fix: simplify .profile.d and .custom/profile.d evaluation (2) --- profile.dot.link | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile.dot.link b/profile.dot.link index 91b25eb..44c57e2 100644 --- a/profile.dot.link +++ b/profile.dot.link @@ -396,14 +396,14 @@ cd $STARTUP_FOLDER # Include other profiles if [ -d "$HOME/.profile.d" ]; then for script in `ls $HOME/.profile.d`; do - source $script + source $HOME/.profile.d/$script done fi # Include custom profiles if [ -d "$HOME/.custom/profile.d" ]; then for script in `ls $HOME/.custom/profile.d`; do - source $script + source $HOME?.custom/profile.d/$script done fi -- cgit v1.2.3