mirror of
https://github.com/NixOS/nix
synced 2025-06-27 16:51:15 +02:00
Replace a few bool flags with enums
Functions like copyClosure() had 3 bool arguments, which creates a severe risk of mixing up arguments. Also, implement copyClosure() using copyPaths().
This commit is contained in:
parent
90da34e421
commit
fcca702a96
22 changed files with 144 additions and 147 deletions
|
@ -1310,7 +1310,7 @@ int main(int argc, char * * argv)
|
|||
Strings opFlags, opArgs, searchPath;
|
||||
std::map<string, string> autoArgs_;
|
||||
Operation op = 0;
|
||||
bool repair = false;
|
||||
RepairFlag repair = NoRepair;
|
||||
string file;
|
||||
|
||||
Globals globals;
|
||||
|
@ -1372,7 +1372,7 @@ int main(int argc, char * * argv)
|
|||
else if (*arg == "--prebuilt-only" || *arg == "-b")
|
||||
globals.prebuiltOnly = true;
|
||||
else if (*arg == "--repair")
|
||||
repair = true;
|
||||
repair = Repair;
|
||||
else if (*arg != "" && arg->at(0) == '-') {
|
||||
opFlags.push_back(*arg);
|
||||
/* FIXME: hacky */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue