mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
Fix if
...if
...else
ambiguity
This can be parsed two ways. Add a pair of braces so it must be parsed the intended way.
This commit is contained in:
parent
176dcd5c61
commit
316e50cc7c
@ -174,11 +174,12 @@ static void fetchTree(
|
||||
if (!evalSettings.pureEval && !input.isDirect() && experimentalFeatureSettings.isEnabled(Xp::Flakes))
|
||||
input = lookupInRegistries(state.store, input).first;
|
||||
|
||||
if (evalSettings.pureEval && !input.isLocked())
|
||||
if (evalSettings.pureEval && !input.isLocked()) {
|
||||
if (params.isFetchGit)
|
||||
state.debugThrowLastTrace(EvalError("in pure evaluation mode, 'fetchGit' requires a locked input, at %s", state.positions[pos]));
|
||||
else
|
||||
state.debugThrowLastTrace(EvalError("in pure evaluation mode, 'fetchTree' requires a locked input, at %s", state.positions[pos]));
|
||||
}
|
||||
|
||||
state.checkURI(input.toURLString());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user