diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-08-07 14:13:24 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-08-07 14:13:24 +0200 |
commit | 2ffc0589507de63bea5555ba993ac195154b4517 (patch) | |
tree | 945b9d7b36773324c6551326d03c00925cd817a4 /src/nix/app.cc | |
parent | 61464478427c4106ce20c1e61bfd5f53f3f49f37 (diff) |
Make --no-eval-cache a global setting
Diffstat (limited to 'src/nix/app.cc')
-rw-r--r-- | src/nix/app.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/app.cc b/src/nix/app.cc index 3935297cf..80acbf658 100644 --- a/src/nix/app.cc +++ b/src/nix/app.cc @@ -8,7 +8,7 @@ namespace nix { App Installable::toApp(EvalState & state) { - auto [cursor, attrPath] = getCursor(state, true); + auto [cursor, attrPath] = getCursor(state); auto type = cursor->getAttr("type")->getString(); |