From: Daan De Meyer Date: Thu, 18 Jul 2024 18:42:11 +0000 (+0200) Subject: Tighten package globs X-Git-Tag: v24~26^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2882%2Fhead;p=thirdparty%2Fmkosi.git Tighten package globs Debs don't do compression suffixes. Udebs aren't really used except for stuff to do with the debian installer so ignore those as well. --- diff --git a/mkosi/config.py b/mkosi/config.py index c4dde5bfd..7c9383132 100644 --- a/mkosi/config.py +++ b/mkosi/config.py @@ -1360,9 +1360,8 @@ CACHE_GID = os.getgid() PACKAGE_GLOBS = ( "*.rpm", "*.pkg.tar*", - "*.deb*", - "*.ddeb*", - "*.udeb*", + "*.deb", + "*.ddeb", )