From 1dbbc8fb826775b6ad8e77aa76dc19f67c6aff97 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Sun, 22 Sep 2024 17:29:49 +0100 Subject: [PATCH] check_whence.py: LC_ALL=C sort -u the filelist Sort the file list, so it's easier to manage. Signed-off-by: Emil Velikov --- check_whence.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/check_whence.py b/check_whence.py index d7742f1e..dbbb68f7 100755 --- a/check_whence.py +++ b/check_whence.py @@ -73,23 +73,23 @@ def main(): whence_links = list(zip(*links_list))[0] known_files = set(name for name in whence_list if not name.endswith("/")) | set( [ - ".gitignore", ".codespell.cfg", + ".gitignore", ".gitlab-ci.yml", ".pre-commit-config.yaml", + "Dockerfile", + "Makefile", + "README.md", + "WHENCE", "build_packages.py", "check_whence.py", "configure", - "Makefile", - "README.md", - "copy-firmware.sh", - "WHENCE", - "Dockerfile", + "contrib/process_linux_firmware.py", "contrib/templates/debian.changelog", "contrib/templates/debian.control", "contrib/templates/debian.copyright", "contrib/templates/rpm.spec", - "contrib/process_linux_firmware.py", + "copy-firmware.sh", ] ) known_prefixes = set(name for name in whence_list if name.endswith("/"))