mirror of
https://github.com/NixOS/nix.git
synced 2025-11-11 21:16:02 +01:00
Fix bug, newInfo -> newInfo0
It appears we were checking a variable in the process of definining it.
This commit is contained in:
parent
35dcbe1c21
commit
6513f4fe92
1 changed files with 1 additions and 1 deletions
|
|
@ -2529,7 +2529,7 @@ SingleDrvOutputs LocalDerivationGoal::registerOutputs()
|
||||||
wanted.to_string(SRI, true),
|
wanted.to_string(SRI, true),
|
||||||
got.to_string(SRI, true)));
|
got.to_string(SRI, true)));
|
||||||
}
|
}
|
||||||
if (!newInfo.references.empty())
|
if (!newInfo0.references.empty())
|
||||||
delayedException = std::make_exception_ptr(
|
delayedException = std::make_exception_ptr(
|
||||||
BuildError("illegal path references in fixed-output derivation '%s'",
|
BuildError("illegal path references in fixed-output derivation '%s'",
|
||||||
worker.store.printStorePath(drvPath)));
|
worker.store.printStorePath(drvPath)));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue