forked from lix-project/lix
Merge branch 'feature/prefetch-progress' of https://github.com/dtzWill/nix
This commit is contained in:
commit
220c79ec22
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue