mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 12:45:27 +03:00
Merge pull request #174639 from mtoohey31/fix/os-release-newline
This commit is contained in:
commit
e34ee08ec5
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ let
|
||||||
attrsToText = attrs:
|
attrsToText = attrs:
|
||||||
concatStringsSep "\n" (
|
concatStringsSep "\n" (
|
||||||
mapAttrsToList (n: v: ''${n}=${escapeIfNeccessary (toString v)}'') attrs
|
mapAttrsToList (n: v: ''${n}=${escapeIfNeccessary (toString v)}'') attrs
|
||||||
);
|
) + "\n";
|
||||||
|
|
||||||
osReleaseContents = {
|
osReleaseContents = {
|
||||||
NAME = "NixOS";
|
NAME = "NixOS";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue