1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

Merge pull request #12913 from NixOS/mergify/bp/2.27-maintenance/pr-12912

Set path display for substituted inputs (backport #12912)
This commit is contained in:
mergify[bot] 2025-04-03 13:07:34 +00:00 committed by GitHub
commit bfa581fcff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -323,6 +323,8 @@ std::pair<ref<SourceAccessor>, Input> Input::getAccessorUnchecked(ref<Store> sto
accessor->fingerprint = getFingerprint(store);
accessor->setPathDisplay("«" + to_string() + "»");
return {accessor, *this};
} catch (Error & e) {
debug("substitution of input '%s' failed: %s", to_string(), e.what());