Merge branch 'feature/prefetch-progress' of https://github.com/dtzWill/nix

This commit is contained in:
Eelco Dolstra 2018-11-09 10:29:59 +01:00
commit 220c79ec22
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE
1 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,8 @@
#include "common-eval-args.hh"
#include "attr-path.hh"
#include "legacy.hh"
#include "finally.hh"
#include "progress-bar.hh"
#include <iostream>
@ -96,6 +98,11 @@ static int _main(int argc, char * * argv)
if (args.size() > 2)
throw UsageError("too many arguments");
Finally f([]() { stopProgressBar(); });
if (isatty(STDERR_FILENO))
startProgressBar();
auto store = openStore();
auto state = std::make_unique<EvalState>(myArgs.searchPath, store);