mirror of
https://github.com/NixOS/nix
synced 2025-07-06 21:41:48 +02:00
Display the diverging paths in case of a realisation mismatch
This commit is contained in:
parent
40f925b2da
commit
16fb7d8d95
2 changed files with 14 additions and 4 deletions
|
@ -65,9 +65,14 @@ void DrvOutputSubstitutionGoal::tryNext()
|
|||
if (auto localOutputInfo = worker.store.queryRealisation(depId);
|
||||
localOutputInfo && localOutputInfo->outPath != depPath) {
|
||||
warn(
|
||||
"substituter '%s' has an incompatible realisation for '%s', ignoring",
|
||||
"substituter '%s' has an incompatible realisation for '%s', ignoring.\n"
|
||||
"Local: %s\n"
|
||||
"Remote: %s",
|
||||
sub->getUri(),
|
||||
depId.to_string());
|
||||
depId.to_string(),
|
||||
worker.store.printStorePath(localOutputInfo->outPath),
|
||||
worker.store.printStorePath(depPath)
|
||||
);
|
||||
tryNext();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue