1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

* Print a better error message when a non-derivation attribute set is

coerced to a string.
This commit is contained in:
Eelco Dolstra 2008-07-24 14:52:25 +00:00
parent 096198d11f
commit fc691e1cbd

View file

@ -48,6 +48,11 @@ LocalNoInlineNoReturn(void throwEvalError(const char * s, const string & s2))
throw EvalError(format(s) % s2); throw EvalError(format(s) % s2);
} }
LocalNoInlineNoReturn(void throwTypeError(const char * s))
{
throw TypeError(s);
}
LocalNoInlineNoReturn(void throwTypeError(const char * s, const string & s2)) LocalNoInlineNoReturn(void throwTypeError(const char * s, const string & s2))
{ {
throw TypeError(format(s) % s2); throw TypeError(format(s) % s2);
@ -305,9 +310,11 @@ string coerceToString(EvalState & state, Expr e, PathSet & context,
} }
ATermList es; ATermList es;
if (matchAttrs(e, es)) if (matchAttrs(e, es)) {
return coerceToString(state, makeSelect(e, toATerm("outPath")), Expr e2 = queryAttr(e, "outPath");
context, coerceMore, copyToStore); if (!e2) throwTypeError("cannot coerce an attribute set (except a derivation) to a string");
return coerceToString(state, e2, context, coerceMore, copyToStore);
}
if (coerceMore) { if (coerceMore) {