treefmt: collapse the assertion-message interpolation to one line
nixfmt wanted the ${...} on a single line (verified locally:
nix build .#checks.x86_64-linux.formatting passes). The earlier CI 'docs'
failure was a transient muede-pc2 build hiccup — the docs check builds clean
locally on the same drv.
This commit is contained in:
parent
990868b2e7
commit
6f5dade9c9
1 changed files with 1 additions and 3 deletions
|
|
@ -355,9 +355,7 @@ in
|
||||||
assertion = lib.all (m: lib.length (lib.splitString "/" m.dest) == 2) effectiveMirrors;
|
assertion = lib.all (m: lib.length (lib.splitString "/" m.dest) == 2) effectiveMirrors;
|
||||||
message = ''
|
message = ''
|
||||||
Every services.hyperhive.forge.mirrors[].dest must be exactly
|
Every services.hyperhive.forge.mirrors[].dest must be exactly
|
||||||
"<owner>/<repo>" (one slash). Got: ${
|
"<owner>/<repo>" (one slash). Got: ${lib.concatMapStringsSep ", " (m: m.dest) effectiveMirrors}
|
||||||
lib.concatMapStringsSep ", " (m: m.dest) effectiveMirrors
|
|
||||||
}
|
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue