hydra-eval-jobs: Add --dry-run option

This commit is contained in:
Eelco Dolstra 2014-09-12 14:30:01 +02:00
parent 748c3409b4
commit c1bf3bb0f2

View file

@ -11,6 +11,7 @@
#include "xml-writer.hh" #include "xml-writer.hh"
#include "get-drvs.hh" #include "get-drvs.hh"
#include "common-opts.hh" #include "common-opts.hh"
#include "globals.hh"
using namespace nix; using namespace nix;
@ -249,6 +250,8 @@ int main(int argc, char * * argv)
; ;
else if (*arg == "--gc-roots-dir") else if (*arg == "--gc-roots-dir")
gcRootsDir = getArg(*arg, arg, end); gcRootsDir = getArg(*arg, arg, end);
else if (*arg == "--dry-run")
settings.readOnlyMode = true;
else if (*arg != "" && arg->at(0) == '-') else if (*arg != "" && arg->at(0) == '-')
return false; return false;
else else