mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
lib/types: only show ... in loaOf warning when necessary
This commit is contained in:
parent
b0c2c96cbe
commit
6fc46fbb17
|
@ -354,6 +354,7 @@ rec {
|
|||
};
|
||||
option = concatStringsSep "." loc;
|
||||
sample = take 3 def.value;
|
||||
more = lib.optionalString (length def.value > 3) "... ";
|
||||
list = concatMapStrings (x: ''{ ${nameAttr} = "${x.${nameAttr} or "unnamed"}"; ...} '') sample;
|
||||
set = concatMapStrings (x: ''${x.${nameAttr} or "unnamed"} = {...}; '') sample;
|
||||
msg = ''
|
||||
|
@ -363,10 +364,10 @@ rec {
|
|||
See https://git.io/fj2zm for more information.
|
||||
Do
|
||||
${option} =
|
||||
{ ${set}...}
|
||||
{ ${set}${more}}
|
||||
instead of
|
||||
${option} =
|
||||
[ ${list}...]
|
||||
[ ${list}${more}]
|
||||
'';
|
||||
in
|
||||
lib.warn msg res
|
||||
|
|
Loading…
Reference in a new issue