aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-09-15 01:50:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-09-15 01:50:45 +1200
commit1f2a4c6999bc23a348625771e4e5809d5801df93 (patch)
treeb017a55aa1723b7e3231c6b34d57aa3d3c093ed6 /sh
parentDegrade TERM for OpenBSD systems (diff)
downloaddotfiles-1f2a4c6999bc23a348625771e4e5809d5801df93.tar.gz
dotfiles-1f2a4c6999bc23a348625771e4e5809d5801df93.zip
Tidier quoting for PATH logic
Diffstat (limited to 'sh')
-rw-r--r--sh/profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/profile b/sh/profile
index bf92b261..cfa8cf22 100644
--- a/sh/profile
+++ b/sh/profile
@@ -9,7 +9,7 @@ export PAGER
# Add ~/.local/bin to PATH if it exists
if [ -d "$HOME"/.local/bin ]; then
- PATH="$HOME/.local/bin:$PATH"
+ PATH="$HOME"/.local/bin:"$PATH"
fi
export PATH