forked from lix-project/lix
Fix error in merge breaking floating CA drvs
Forgot to add this hunk!
This commit is contained in:
parent
1b5c24662b
commit
2a0902634e
|
@ -192,7 +192,7 @@ static DerivationOutput parseDerivationOutput(const Store & store,
|
||||||
|
|
||||||
static DerivationOutput parseDerivationOutput(const Store & store, std::istringstream & str)
|
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 hashAlgo = parseString(str);
|
||||||
expect(str, ","); const auto hash = parseString(str);
|
expect(str, ","); const auto hash = parseString(str);
|
||||||
expect(str, ")");
|
expect(str, ")");
|
||||||
|
|
Loading…
Reference in a new issue