diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-10-03T19·14-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-10-03T19·14-0400 |
commit | 2e90a5a2a7646f4ab36202d6a149518ccb6f750e (patch) | |
tree | 1ba6c703ddd09a27dbf3c78b79560aae5355b622 /scripts | |
parent | 0a7084567fc4e7d077863075a7ea1bb82d843341 (diff) |
nix-build: Support ‘--repair’ flag
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/nix-build.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-build.in b/scripts/nix-build.in index c46b270ff89d..8973f5fb7316 100755 --- a/scripts/nix-build.in +++ b/scripts/nix-build.in @@ -134,7 +134,7 @@ EOF $verbose = 1; } - elsif ($arg eq "--quiet") { + elsif ($arg eq "--quiet" || $arg eq "--repair") { push @buildArgs, $arg; push @instArgs, $arg; } |