mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-31 04:04:55 +00:00
feat: don't output empty systems
This commit is contained in:
parent
7c7a8bce3d
commit
a7b625e84e
1 changed files with 4 additions and 5 deletions
|
@ -7,10 +7,9 @@ let
|
|||
mkOption
|
||||
types
|
||||
;
|
||||
inherit (flake-parts-lib)
|
||||
mkSubmoduleOptions
|
||||
mkPerSystemOption
|
||||
;
|
||||
|
||||
removeEmptySystems = attrName:
|
||||
lib.filterAttrs (system: v: v.${attrName} != {});
|
||||
|
||||
transpositionModule = {
|
||||
options = {
|
||||
|
@ -57,7 +56,7 @@ in
|
|||
(attrName: attrConfig:
|
||||
mapAttrs
|
||||
(system: v: v.${attrName})
|
||||
config.allSystems
|
||||
(removeEmptySystems attrName config.allSystems)
|
||||
)
|
||||
config.transposition;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue