Merge pull request #35358 from volth/patch-100
nixos/label: no prepend '-' if there are no tags
This commit is contained in:
commit
4440e267c4
|
@ -65,8 +65,8 @@ in
|
||||||
# This is set here rather than up there so that changing it would
|
# This is set here rather than up there so that changing it would
|
||||||
# not rebuild the manual
|
# not rebuild the manual
|
||||||
system.nixos.label = mkDefault (maybeEnv "NIXOS_LABEL"
|
system.nixos.label = mkDefault (maybeEnv "NIXOS_LABEL"
|
||||||
(concatStringsSep "-" (sort (x: y: x < y) cfg.tags)
|
(concatStringsSep "-" ((sort (x: y: x < y) cfg.tags)
|
||||||
+ "-" + maybeEnv "NIXOS_LABEL_VERSION" cfg.version));
|
++ [ (maybeEnv "NIXOS_LABEL_VERSION" cfg.version) ])));
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue