diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2022-12-12 17:36:02 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2022-12-12 17:36:02 -0500 |
commit | dabb03b8d0ee0155ef994042ef807e0924b9e6e7 (patch) | |
tree | 724950b1ba1d3dd849f640b8ce244cdf0b4c0b5a /src/libstore/binary-cache-store.cc | |
parent | c886b1856184fc180603435197a10ea20df8bcfb (diff) | |
parent | 7396844676651ea8ee017b9c7578581c5885e0f9 (diff) |
Merge remote-tracking branch 'upstream/master' into indexed-store-path-outputs
Diffstat (limited to 'src/libstore/binary-cache-store.cc')
-rw-r--r-- | src/libstore/binary-cache-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/binary-cache-store.cc b/src/libstore/binary-cache-store.cc index 12d0c32fb..149d414d3 100644 --- a/src/libstore/binary-cache-store.cc +++ b/src/libstore/binary-cache-store.cc @@ -346,7 +346,7 @@ void BinaryCacheStore::narFromPath(const StorePath & storePath, Sink & sink) try { getFile(info->url, *decompressor); } catch (NoSuchBinaryCacheFile & e) { - throw SubstituteGone(e.info()); + throw SubstituteGone(std::move(e.info())); } decompressor->finish(); |