diff options
author | Matthew Bauer <mjbauer95@gmail.com> | 2020-06-19 15:19:09 -0400 |
---|---|---|
committer | Matthew Bauer <mjbauer95@gmail.com> | 2020-06-19 15:19:09 -0400 |
commit | e8e1f5282ff213be010cbe45772b9e725c01f285 (patch) | |
tree | 812c55fc8cc4dcc50e421c8ff04d84c6ad8f419a /src | |
parent | 0c9c1b8826395a9023606cd7749aa16ef6771941 (diff) |
Replace error message in getDerivationCA
Diffstat (limited to 'src')
-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 128c3c987..a01e81b78 100644 --- a/src/libstore/misc.cc +++ b/src/libstore/misc.cc @@ -126,7 +126,7 @@ std::optional<std::string> getDerivationCA(const BasicDerivation & drv) else if (outputHashMode->second == "flat") ingestionMethod = FileIngestionMethod::Flat; else - throw Error("unknown ingestion method: '%s'", outputHashMode->second); + throw Error("unknown outputHashMode: '%s'", outputHashMode->second); return makeFixedOutputCA(ingestionMethod, h); } |