diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2022-09-24 12:55:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 12:55:53 +0200 |
commit | 371013c08dc68d90c003ac677045ecbc9b463e8c (patch) | |
tree | 7e9439081cba6786c04899cc53199b05f1a27b38 /src/libexpr/flake/lockfile.cc | |
parent | 3eb185d6d14d42943cd851f423d125609ca910ea (diff) | |
parent | ece12a97d9c7e0024ebddb9e5eb0c919a9efb694 (diff) |
Merge pull request #7010 from edolstra/ignore-shell
nix develop: Ignore stdenv's $SHELL
Diffstat (limited to 'src/libexpr/flake/lockfile.cc')
-rw-r--r-- | src/libexpr/flake/lockfile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/flake/lockfile.cc b/src/libexpr/flake/lockfile.cc index 60b52d578..629d2e669 100644 --- a/src/libexpr/flake/lockfile.cc +++ b/src/libexpr/flake/lockfile.cc @@ -36,7 +36,7 @@ LockedNode::LockedNode(const nlohmann::json & json) , isFlake(json.find("flake") != json.end() ? (bool) json["flake"] : true) { if (!lockedRef.input.isLocked()) - throw Error("lockfile contains mutable lock '%s'", + throw Error("lock file contains mutable lock '%s'", fetchers::attrsToJSON(lockedRef.input.toAttrs())); } |