mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
fix missing function after rebase
This commit is contained in:
parent
04b113f6cb
commit
3b27181ee5
1 changed files with 1 additions and 1 deletions
|
@ -1317,7 +1317,7 @@ std::optional<StorePath> Store::getBuildDerivationPath(const StorePath & path)
|
||||||
return path;
|
return path;
|
||||||
|
|
||||||
auto drv = readDerivation(path);
|
auto drv = readDerivation(path);
|
||||||
if (!derivationHasKnownOutputPaths(drv.type())) {
|
if (!drv.type().hasKnownOutputPaths()) {
|
||||||
// The build log is actually attached to the corresponding
|
// The build log is actually attached to the corresponding
|
||||||
// resolved derivation, so we need to get it first
|
// resolved derivation, so we need to get it first
|
||||||
auto resolvedDrv = drv.tryResolve(*this);
|
auto resolvedDrv = drv.tryResolve(*this);
|
||||||
|
|
Loading…
Reference in a new issue