diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2013-09-15 01:50:45 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2013-09-15 01:50:45 +1200 |
commit | 1f2a4c6999bc23a348625771e4e5809d5801df93 (patch) | |
tree | b017a55aa1723b7e3231c6b34d57aa3d3c093ed6 | |
parent | Degrade TERM for OpenBSD systems (diff) | |
download | dotfiles-1f2a4c6999bc23a348625771e4e5809d5801df93.tar.gz dotfiles-1f2a4c6999bc23a348625771e4e5809d5801df93.zip |
Tidier quoting for PATH logic
-rw-r--r-- | sh/profile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |