diff options
author | Yann Esposito (Yogsototh) <yann.esposito@gmail.com> | 2020-05-24 15:40:27 +0200 |
---|---|---|
committer | Yann Esposito (Yogsototh) <yann.esposito@gmail.com> | 2020-05-24 15:40:27 +0200 |
commit | c1685c31ee863423926fa3419531b7a2d408de22 (patch) | |
tree | 93b990960b7a7bb554f746dc1cf35164667f71e3 /org-fc.el | |
parent | 7824f9b3d8d12cdb5cdf067e77edb9f87ee01d19 (diff) |
fix find on symlinks
Diffstat (limited to 'org-fc.el')
-rw-r--r-- | org-fc.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 () |