about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xexamples/rifle_sxiv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rifle_sxiv.sh b/examples/rifle_sxiv.sh
index 5eb52fc0..efa935b2 100755
--- a/examples/rifle_sxiv.sh
+++ b/examples/rifle_sxiv.sh
@@ -13,7 +13,7 @@
 [ "$1" == '--' ] && shift
 target="$(realpath -s "$1")"
 function listfiles {
-    find "$(dirname "$target")" -maxdepth 1 -type f -iregex \
+    find -L "$(dirname "$target")" -maxdepth 1 -type f -iregex \
       '.*\(jpe?g\|bmp\|png\|gif\)$' -print0 | sort -z
 }