mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
daemon: check: Fix "failed to produce output path".
This occured when sandbox building is disabled, at least one output exists, and at least one other output does not.
This commit is contained in:
parent
f83e82cd00
commit
7889e72dad
1 changed files with 1 additions and 1 deletions
|
@ -2345,7 +2345,7 @@ void DerivationGoal::registerOutputs()
|
|||
&& redirectedBadOutputs.find(path) != redirectedBadOutputs.end()
|
||||
&& pathExists(redirected))
|
||||
replaceValidPath(path, redirected);
|
||||
if (buildMode == bmCheck)
|
||||
if (buildMode == bmCheck && redirected != "")
|
||||
actualPath = redirected;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue