aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-12-19 12:53:42 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-12-19 12:53:42 +1300
commitd8c336c02edeed19590b75772dd66e81d684bbe5 (patch)
tree01e3a600e7e0d832242824ff9e2777b6c52f6414
parentInline a file exist-source test (diff)
downloaddotfiles-d8c336c02edeed19590b75772dd66e81d684bbe5.tar.gz
dotfiles-d8c336c02edeed19590b75772dd66e81d684bbe5.zip
Use -e test to be consistent
-rw-r--r--sh/shrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/shrc b/sh/shrc
index 8a6c0062..879c8947 100644
--- a/sh/shrc
+++ b/sh/shrc
@@ -21,4 +21,4 @@ done
unset -v sh
# If ENV_EXT was set and exists, source that too
-[ -f "$ENV_EXT" ] && . "$ENV_EXT"
+[ -e "$ENV_EXT" ] && . "$ENV_EXT"