about summary refs log tree commit diff
path: root/src/nix/command.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-14T19·14+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-15T13·39+0200
commit99851c6f06c80fe2222c5e5fcef963804e907170 (patch)
treef28eaed5d273ab8ac7d2805dfe36dcb810976f76 /src/nix/command.hh
parent327569035c70b6171347e5c9c0cd3de4fd7383eb (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.hh1
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: