X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=darcs-all;h=59e29e1c9d8e5f6df21523ffcc9481c05b71bf7d;hb=b4ef814c34e7007180d0d38a13c19229391aac7f;hp=70cf16506ebfc88486b4f34ff6ab2b37bd191608;hpb=56bf673097811e7fa362ae3741f6ff4ea872475b;p=ghc-hetmet.git diff --git a/darcs-all b/darcs-all index 70cf165..59e29e1 100644 --- a/darcs-all +++ b/darcs-all @@ -32,6 +32,8 @@ my $ignore_failure = 0; # --extra says we grab the extra libs with 'get'. It has no effect on # the other commands. my $extra = 0; +# --complete gets passed onto darcs get +my $complete = 0; # --nofib/--testsuite tell get to also grab the respective repos. # They have no effect on the other commands. my $nofib = 0; @@ -90,7 +92,7 @@ sub darcsgetpackage { sub darcsget { my $r_flags; - if (! grep /(?:--complete|--partial)/, @_) { + if (! $complete && ! grep /(?:--complete|--partial)/, @_) { warning("adding --partial, to override use --complete"); $r_flags = [@_, "--partial"]; } @@ -124,9 +126,14 @@ sub main { while ($#_ ne -1) { my $arg = shift; + # We handle -q here as well as lower down as we need to skip over it + # if it comes before the darcs command if ($arg eq "-q") { $verbose = 0; } + elsif ($arg eq "--complete") { + $complete = 1; + } elsif ($arg eq "--extra") { $extra = 1; } @@ -138,6 +145,9 @@ sub main { } else { unshift @_, $arg; + if (grep /^-q$/, @_) { + $verbose = 0; + } last; } }