1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 01:11:15 +02:00

Fix verbosity level for nix build --dry-run

This commit is contained in:
Eelco Dolstra 2017-08-31 17:57:04 +02:00
parent fe38fce2d8
commit 7a108d904e
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
4 changed files with 16 additions and 16 deletions

View file

@ -35,11 +35,11 @@ void printGCWarning();
class Store;
void printMissing(ref<Store> store, const PathSet & paths);
void printMissing(ref<Store> store, const PathSet & paths, Verbosity lvl = lvlInfo);
void printMissing(ref<Store> store, const PathSet & willBuild,
const PathSet & willSubstitute, const PathSet & unknown,
unsigned long long downloadSize, unsigned long long narSize);
unsigned long long downloadSize, unsigned long long narSize, Verbosity lvl = lvlInfo);
string getArg(const string & opt,
Strings::iterator & i, const Strings::iterator & end);