aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/la.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh/shrc.d/la.sh')
-rw-r--r--sh/shrc.d/la.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/shrc.d/la.sh b/sh/shrc.d/la.sh
index e21ad8fb..1ac44b8e 100644
--- a/sh/shrc.d/la.sh
+++ b/sh/shrc.d/la.sh
@@ -1,7 +1,7 @@
# Run ls -A if we can (-A is not POSIX), ls -a otherwise
la() {
# Prefer --almost-all (exclude "." and "..") if available
- if [ -e "$HOME"/.cache/ls/almost-all ] ; then
+ if [ -e "$HOME"/.cache/sh/opt/ls/almost-all ] ; then
set -- -A "$@"
else
set -- -a "$@"