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