]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mkosi: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 2 Aug 2024 20:47:52 +0000 (05:47 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 2 Aug 2024 20:47:55 +0000 (05:47 +0900)
Follow-up for 7205fc7dc31eb2be3075ee6ba23ebe84324aa5cb.

mkosi.conf.d/10-centos-fedora/mkosi.prepare

index 2a890bcada81317ac74a978b0c1d6ad519ab51aa..5729062953872a259c0c03ab398e30889c22c460 100755 (executable)
@@ -11,7 +11,7 @@ mapfile -t PACKAGES < <(jq --raw-output .VolatilePackages[] <"$MKOSI_CONFIG")
 for DEPS in --requires --recommends --suggests; do
     # We need --latest-limit=1 to only consider the newest version of the packages.
     # --latest-limit=1 is per <name>.<arch> so we have to pass --arch= explicitly to make sure i686 packages
-    # are not considerd on x86-64.
+    # are not considered on x86-64.
     dnf repoquery --arch="$DISTRIBUTION_ARCHITECTURE" --latest-limit=1 --quiet "$DEPS" "${PACKAGES[@]}" |
         grep --invert-match --regexp systemd --regexp udev --regexp /bin/sh --regexp grubby --regexp sdubby --regexp libcurl-minimal |
         sort --unique |