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