diff options
author | Tyler Davis <tyler@gluecode.net> | 2023-08-26 21:55:25 -0700 |
---|---|---|
committer | Tyler Davis <tyler@gluecode.net> | 2023-08-26 21:55:25 -0700 |
commit | b3e409ad0b75591d1c454114afa243665e9687d4 (patch) | |
tree | daf4aedae23725e32b1d84e8e3b1669082caa497 /.profile | |
parent | 4f640d2476e7d338a6017ba0b64522e16a9ec018 (diff) | |
download | dotfiles-b3e409ad0b75591d1c454114afa243665e9687d4.tar.gz dotfiles-b3e409ad0b75591d1c454114afa243665e9687d4.zip |
sh: fix broken test cond
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |