branch: externals/org-real
commit 6fcc3b952027be9fa8b956be5edec13e87640858
Author: Tyler Grinn <tylergr...@gmail.com>
Commit: Tyler Grinn <tylergr...@gmail.com>

    Updated md5 command to see tar files
---
 Eldev | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/Eldev b/Eldev
index 49da7f0..ae36fab 100644
--- a/Eldev
+++ b/Eldev
@@ -1,12 +1,14 @@
 ; -*- mode: emacs-lisp; lexical-binding: t -*-
 
 (eldev-defcommand
- eventuel-md5 (&rest parameters)
+ md5 (&rest parameters)
  "Create md5 checksum of tar files in dist folder"
- (mapcar
+ (mapc
   (lambda (file)
     (write-region
      (secure-hash 'md5 file)
      nil
      (concat (file-name-sans-extension file) ".md5")))
-  (directory-files eldev-dist-dir t "\\.el\\'")))
+  (append
+   (directory-files eldev-dist-dir t "\\.tar\\'")
+   (directory-files eldev-dist-dir t "\\.el\\'"))))

Reply via email to