aboutsummaryrefslogtreecommitdiff
path: root/sh/profile
diff options
context:
space:
mode:
Diffstat (limited to 'sh/profile')
-rw-r--r--sh/profile10
1 files changed, 5 insertions, 5 deletions
diff --git a/sh/profile b/sh/profile
index d5a2fec8..0a1e12a3 100644
--- a/sh/profile
+++ b/sh/profile
@@ -6,14 +6,14 @@ export VISUAL="$EDITOR"
export PAGER='less'
# Add ~/.local/bin to PATH
-[ -d "$HOME/.local/bin" ] && PATH="$HOME/.local/bin:$PATH"
+if [ -d "$HOME/.local/bin" ]; then
+ PATH="$HOME/.local/bin:$PATH"
+fi
export PATH
# Load any supplementary scripts
-if [ -d "$HOME/.profile.d" ]
-then
- for file in $HOME/.profile.d/*
- do
+if [ -d "$HOME/.profile.d" ]; then
+ for file in $HOME/.profile.d/*; do
. $file
done
fi