From: Silvio Rhatto Date: Wed, 3 Jul 2024 20:00:56 +0000 (-0300) Subject: Fix: profile: source custom scripts with a dot X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=f95eb83881473d6922e9c45d79b3ed1b0bbfc656;p=rhatto%2Fdotfiles%2Fprofile.git Fix: profile: source custom scripts with a dot --- diff --git a/profile.dot.link b/profile.dot.link index b0626b4..bc7586e 100644 --- a/profile.dot.link +++ b/profile.dot.link @@ -421,14 +421,14 @@ cd $STARTUP_FOLDER # Include other profiles if [ -d "$HOME/.profile.d" ]; then for script in `ls $HOME/.profile.d`; do - source $HOME/.profile.d/$script + . $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 $HOME?.custom/profile.d/$script + . $HOME/.custom/profile.d/$script done fi