1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 05:01:48 +02:00

Rename strictForceValue -> forceValueDeep

This commit is contained in:
Eelco Dolstra 2014-09-22 15:03:59 +02:00
parent 022618c794
commit 1e0a799bef
3 changed files with 5 additions and 5 deletions

View file

@ -61,7 +61,7 @@ void processExpr(EvalState & state, const Strings & attrPaths,
else if (output == okJSON)
printValueAsJSON(state, strict, vRes, std::cout, context);
else {
if (strict) state.strictForceValue(vRes);
if (strict) state.forceValueDeep(vRes);
std::cout << vRes << std::endl;
}
} else {