summaryrefslogtreecommitdiff
path: root/org-fc.el
diff options
context:
space:
mode:
authorYann Esposito (Yogsototh) <yann.esposito@gmail.com>2020-05-24 15:40:27 +0200
committerYann Esposito (Yogsototh) <yann.esposito@gmail.com>2020-05-24 15:40:27 +0200
commitc1685c31ee863423926fa3419531b7a2d408de22 (patch)
tree93b990960b7a7bb554f746dc1cf35164667f71e3 /org-fc.el
parent7824f9b3d8d12cdb5cdf067e77edb9f87ee01d19 (diff)
fix find on symlinks
Diffstat (limited to 'org-fc.el')
-rw-r--r--org-fc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/org-fc.el b/org-fc.el
index f6c9ede..5849c58 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -1196,7 +1196,7 @@ Checks if the headline is a suspended card first."
Matches all .org files ignoring ones with names don't start with
a '.' to exclude temporary / backup files."
(format
- "find %s -name \"*.org\" -not -name \".*\" -print0"
+ "find -L %s -name \"*.org\" -not -name \".*\" -print0"
(mapconcat 'identity paths " ")))
(defun org-fc-awk--indexer-variables ()