We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 635f5ff commit 4568cbbCopy full SHA for 4568cbb
flake.nix
@@ -180,7 +180,7 @@
180
};
181
eitherN = tn:
182
let
183
- combine = a: b: if b == null then a else "[${a}]: ${b}";
+ combine = a: b: if a == null then b else "[${a}]: ${b}";
184
logContexts = map (t: t.logContext or null) tn;
185
# Function to pair two lists, combining their corresponding elements
186
pairList = listA: listB: lib.lists.zipListsWith combine listA listB;
0 commit comments