mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Merge branch 'master' of github.com:NixOS/nix into sigint-copy
This commit is contained in:
commit
54a2cd9ce4
1 changed files with 2 additions and 2 deletions
|
@ -2400,10 +2400,10 @@ void DerivationGoal::writeStructuredAttrs()
|
|||
}
|
||||
|
||||
if (value.is_null())
|
||||
return "''";
|
||||
return std::string("''");
|
||||
|
||||
if (value.is_boolean())
|
||||
return value.get<bool>() ? "1" : "";
|
||||
return value.get<bool>() ? std::string("1") : std::string("");
|
||||
|
||||
return {};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue