emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org-real 6fcc3b9 031/160: Updated md5 command to see ta


From: ELPA Syncer
Subject: [elpa] externals/org-real 6fcc3b9 031/160: Updated md5 command to see tar files
Date: Wed, 6 Oct 2021 16:58:09 -0400 (EDT)

branch: externals/org-real
commit 6fcc3b952027be9fa8b956be5edec13e87640858
Author: Tyler Grinn <tylergrinn@gmail.com>
Commit: Tyler Grinn <tylergrinn@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

[Prev in Thread] Current Thread [Next in Thread]