Fix querying output paths
The upstream function signature changed, we no longer have to pass onlyOutputsToInstall.
This commit is contained in:
parent
c1b86245a1
commit
353724df90
|
@ -211,7 +211,7 @@ static void worker(
|
|||
auto localStore = state.store.dynamic_pointer_cast<LocalFSStore>();
|
||||
auto drvPath = localStore->printStorePath(drv->requireDrvPath());
|
||||
auto storePath = localStore->parseStorePath(drvPath);
|
||||
auto outputs = drv->queryOutputs(false);
|
||||
auto outputs = drv->queryOutputs();
|
||||
|
||||
reply["name"] = drv->queryName();
|
||||
reply["system"] = drv->querySystem();
|
||||
|
|
Loading…
Reference in a new issue