Fix querying output paths

The upstream function signature changed, we no longer have to pass onlyOutputsToInstall.
This commit is contained in:
adisbladis 2022-04-22 19:06:23 +12:00
parent c1b86245a1
commit 353724df90

View file

@ -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();