summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
authorTyler Davis <tyler@gluecode.net>2023-08-26 21:55:25 -0700
committerTyler Davis <tyler@gluecode.net>2023-08-26 21:55:25 -0700
commitb3e409ad0b75591d1c454114afa243665e9687d4 (patch)
treedaf4aedae23725e32b1d84e8e3b1669082caa497 /.profile
parent4f640d2476e7d338a6017ba0b64522e16a9ec018 (diff)
downloaddotfiles-b3e409ad0b75591d1c454114afa243665e9687d4.tar.gz
dotfiles-b3e409ad0b75591d1c454114afa243665e9687d4.zip
sh: fix broken test cond
Diffstat (limited to '.profile')
-rw-r--r--.profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/.profile b/.profile
index 232f3cc..ccf883d 100644
--- a/.profile
+++ b/.profile
@@ -78,7 +78,7 @@ if [ "$(uname -s)" = "Darwin" ]; then
export BASH_SILENCE_DEPRECATION_WARNING=1
fi
- if [ -f '/opt/local' ]; then
+ if [ -d '/opt/local' ]; then
export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
fi