diff options
author | Robert Hensing <roberth@users.noreply.github.com> | 2023-01-16 12:22:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 12:22:30 +0100 |
commit | c133e663750e081a009fc80ea0fbca3e5f56a4d6 (patch) | |
tree | 4175ea67fe1769f278cf53d2406669158eb43b92 | |
parent | 2e41ae9f93af0be2c778dda97e0ee9544a8aca1f (diff) | |
parent | f419ab48e6394838097f158265ac3cc531ee7958 (diff) |
Merge pull request #7604 from obsidiansystems/fix-variant-missing-raw
Try to fix build failure
-rw-r--r-- | src/libstore/misc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/misc.cc b/src/libstore/misc.cc index 5758c3d93..b28768459 100644 --- a/src/libstore/misc.cc +++ b/src/libstore/misc.cc @@ -319,7 +319,7 @@ OutputPathMap resolveDerivedPath(Store & store, const DerivedPath::Built & bfd, [&](const OutputsSpec::Names & names) { return static_cast<std::set<std::string>>(names); }, - }, bfd.outputs); + }, bfd.outputs.raw()); for (auto & output : outputNames) { auto outputHash = get(outputHashes, output); if (!outputHash) |