branch: externals/disk-usage
commit 936b73d6800470a1c0b4b0e363ffac6fa61960e5
Author: Pierre Neidhardt <[email protected]>
Commit: Pierre Neidhardt <[email protected]>
Actually use disk-usage--find-command
---
disk-usage.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/disk-usage.el b/disk-usage.el
index 04ebd26..3b26368 100644
--- a/disk-usage.el
+++ b/disk-usage.el
@@ -167,7 +167,7 @@ $ find . -type f -exec du -sb {} +"
:name (cadr pair)
:size (string-to-number (cl-first pair)))))
(split-string (with-temp-buffer
- (call-process "find" nil '(t nil) nil
+ (call-process disk-usage--find-command nil '(t nil)
nil
directory
"-type" "f"
"-exec" disk-usage--du-command
disk-usage--du-args "{}" "+")