summaryrefslogtreecommitdiff
path: root/.profile
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2017-11-30 10:18:39 -0700
committerSean Whitton <spwhitton@spwhitton.name>2017-11-30 10:18:39 -0700
commit3d9c9f5821dd00cc9db36a4428b623dc10cb8b03 (patch)
tree6bf7db50809d6947880ea5f888a4b8b15c610245 /.profile
parent5324ad2d2e0c090df6f27a9c8bf7bf0360ffaabf (diff)
downloaddotfiles-3d9c9f5821dd00cc9db36a4428b623dc10cb8b03.tar.gz
attempt to fix .profile
Diffstat (limited to '.profile')
-rwxr-xr-x[-rw-r--r--].profile10
1 files changed, 6 insertions, 4 deletions
diff --git a/.profile b/.profile
index c716395c..10fbc75e 100644..100755
--- a/.profile
+++ b/.profile
@@ -2,10 +2,12 @@
# --- $PATH
-if [ -d ~/local/bin ] ; then
- PATH=~/local/bin:"${PATH}"
+if [ -d "$HOME/bin" ] ; then
+ PATH="$HOME/bin:$PATH"
+ export PATH
fi
-if [ -d ~/bin ] ; then
- PATH=~/bin:"${PATH}"
+if [ -d "$HOME/local/bin" ] ; then
+ PATH="$HOME/local/bin:$PATH"
+ export PATH
fi