From 560ab2cb956e936ead76074c5e8e6f6c0287074a Mon Sep 17 00:00:00 2001 From: Ricardo Martincoski Date: Sun, 1 Apr 2018 02:08:15 -0300 Subject: [PATCH] check-package: enable for arch/ and system/ These directories can benefit from this script to prevent common mistakes when submitting patches. In order to accomplish this: Do not ignore anymore files from these directories. Signed-off-by: Ricardo Martincoski Cc: Yann E. MORIN Signed-off-by: Thomas Petazzoni --- utils/check-package | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/check-package b/utils/check-package index d2457c706c..8d10affabd 100755 --- a/utils/check-package +++ b/utils/check-package @@ -46,7 +46,9 @@ def parse_args(): CONFIG_IN_FILENAME = re.compile("/Config\.\S*$") DO_CHECK_INTREE = re.compile("|".join([ + "arch/", "package/", + "system/", ])) DO_NOT_CHECK_INTREE = re.compile("|".join([ "package/doc-asciidoc\.mk$", -- 2.30.2