lib.cli.toGNUCommandLine: move variable definition to higher scope

This commit is contained in:
Eman Resu
2026-06-21 16:13:54 -04:00
parent 72785188e1
commit 1ffe9499a2
+1 -3
View File
@@ -155,7 +155,6 @@ rec {
optionValueSeparator ? null,
}:
options:
let
render =
k: v:
@@ -165,9 +164,8 @@ rec {
mkList k v
else
mkOption k v;
in
concatLists (mapAttrsToList render options)
options: concatLists (mapAttrsToList render options)
);
/**