From: Emil Velikov Date: Sun, 22 Sep 2024 16:29:49 +0000 (+0100) Subject: check_whence.py: LC_ALL=C sort -u the filelist X-Git-Tag: 20241017~9^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1dbbc8fb826775b6ad8e77aa76dc19f67c6aff97;p=thirdparty%2Flinux-firmware.git 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 --- 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", - "build_packages.py", - "check_whence.py", - "configure", + "Dockerfile", "Makefile", "README.md", - "copy-firmware.sh", "WHENCE", - "Dockerfile", + "build_packages.py", + "check_whence.py", + "configure", + "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("/"))