diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-14T19·14+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-15T13·39+0200 |
commit | 99851c6f06c80fe2222c5e5fcef963804e907170 (patch) | |
tree | f28eaed5d273ab8ac7d2805dfe36dcb810976f76 /src/nix/command.hh | |
parent | 327569035c70b6171347e5c9c0cd3de4fd7383eb (diff) |
Unify "nix verify-paths" and "nix verify-store"
"verify-store" is now simply an "--all" flag to "nix verify". This flag can be used for any other store path command as well (e.g. "nix path-info", "nix copy-sigs", ...).
Diffstat (limited to 'src/nix/command.hh')
-rw-r--r-- | src/nix/command.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix/command.hh b/src/nix/command.hh index 8397244ca177..a6adb5f65491 100644 --- a/src/nix/command.hh +++ b/src/nix/command.hh @@ -31,6 +31,7 @@ private: Paths storePaths; bool recursive = false; + bool all = false; public: |