From c25425b97d4064b8f67c5dc7fa6f0e2202a361f4 Mon Sep 17 00:00:00 2001 From: Ben Westover Date: Sun, 19 Nov 2023 20:08:12 +0000 Subject: [PATCH] config: Fix typo in valid aport options Setting !pmb:kconfigcheck prevents kconfig check from failing in CI. This causes the lint job to fail, however, because there is a typo in pmbootstrap's list of valid options for aports. Reviewed-by: Oliver Smith Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20231119200807.84775-1-me@benthetechguy.net%3E --- pmb/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 850b4fe6..e26b0661 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -761,7 +761,7 @@ apkbuild_attributes = { # Reference: https://postmarketos.org/apkbuild-options apkbuild_custom_valid_options = [ "!pmb:crossdirect", - "!pmb:kconfig-check", + "!pmb:kconfigcheck", "pmb:kconfigcheck-community", "pmb:kconfigcheck-containers", "pmb:kconfigcheck-iwd",