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

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

[elpa] elpa-admin ed5d4e7 182/357: Skip "test" directories for copyright


From: Stefan Monnier
Subject: [elpa] elpa-admin ed5d4e7 182/357: Skip "test" directories for copyright checks
Date: Thu, 10 Dec 2020 18:06:39 -0500 (EST)

branch: elpa-admin
commit ed5d4e720a3db3aca69c5b9997d856fc8e190e16
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    Skip "test" directories for copyright checks
---
 GNUmakefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/GNUmakefile b/GNUmakefile
index e35b82d..03044dc 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -15,7 +15,9 @@ check_copyrights:
        @echo "Compute exceptions >$(CR_EXCEPTIONS)~"
        @export LANG=C;                                                 \
        (cd packages;                                                   \
-       find . -name '.git' -prune -o -name '*.el' -print0 |            \
+       find . -name '.git' -prune -o                                   \
+              -name 'test' -prune -o                                   \
+              -name '*.el' -print0 |                                   \
            xargs -0 grep -L 'Free Software Foundation, Inc' |          \
            grep -v '\(\.dir-locals\|.-\(pkg\|autoloads\)\)\.el$$';     \
        find . -name '.git' -prune -o -name '*.el' -print |             \



reply via email to

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