aboutsummaryrefslogtreecommitdiff
path: root/sh/profile
diff options
context:
space:
mode:
Diffstat (limited to 'sh/profile')
-rw-r--r--sh/profile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sh/profile b/sh/profile
index 813fb7cc..14b0a56b 100644
--- a/sh/profile
+++ b/sh/profile
@@ -15,8 +15,8 @@ export PATH
# Load all supplementary scripts in ~/.profile.d
if [ -d "$HOME/.profile.d" ]; then
- for file in $HOME/.profile.d/*; do
- . $file
+ for file in "$HOME/.profile.d"/*; do
+ . "$file"
done
fi