Fix error in merge breaking floating CA drvs

Forgot to add this hunk!
This commit is contained in:
John Ericson 2020-08-11 00:12:54 +00:00
parent 1b5c24662b
commit 2a0902634e

View file

@ -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, ")");