diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-11 00:12:54 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-11 00:13:19 +0000 |
commit | 2a0902634eddded44a1775b275a257c98ca1dec8 (patch) | |
tree | 1856cfa97d2c94f20318dc83183c895ff6acebc6 /src/libstore | |
parent | 1b5c24662b670cc1041794197052b4473e4e47f0 (diff) |
Fix error in merge breaking floating CA drvs
Forgot to add this hunk!
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/derivations.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc index 732401dc5..e9f35a6f1 100644 --- a/src/libstore/derivations.cc +++ b/src/libstore/derivations.cc @@ -192,7 +192,7 @@ static DerivationOutput parseDerivationOutput(const Store & store, static DerivationOutput parseDerivationOutput(const Store & store, std::istringstream & str) { - expect(str, ","); const auto pathS = parsePath(str); + expect(str, ","); const auto pathS = parseString(str); expect(str, ","); const auto hashAlgo = parseString(str); expect(str, ","); const auto hash = parseString(str); expect(str, ")"); |