summaryrefslogtreecommitdiff
path: root/darcs-all
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-04-29 17:27:34 +0000
committerIan Lynagh <igloo@earth.li>2007-04-29 17:27:34 +0000
commit56bf673097811e7fa362ae3741f6ff4ea872475b (patch)
tree25b4af65f8c9e79542bddb4aebc0c2fa640a51d0 /darcs-all
parent610379bc0660cc9df6bb8cfaa98e566157236026 (diff)
downloadhaskell-56bf673097811e7fa362ae3741f6ff4ea872475b.tar.gz
Put the darcs-all command parsing into main() so it can use @_
Diffstat (limited to 'darcs-all')
-rw-r--r--darcs-all40
1 files changed, 20 insertions, 20 deletions
diff --git a/darcs-all b/darcs-all
index 30173c2fa5..70cf16506e 100644
--- a/darcs-all
+++ b/darcs-all
@@ -37,26 +37,6 @@ my $extra = 0;
my $nofib = 0;
my $testsuite = 0;
-while ($#_ ne -1) {
- my $arg = shift;
- if ($arg eq "-q") {
- $verbose = 0;
- }
- elsif ($arg eq "--extra") {
- $extra = 1;
- }
- elsif ($arg eq "--nofib") {
- $nofib = 1;
- }
- elsif ($arg eq "--testsuite") {
- $testsuite = 1;
- }
- else {
- unshift @_, $arg;
- last;
- }
-}
-
sub message {
if ($verbose) {
print "@_\n";
@@ -142,6 +122,26 @@ sub main {
die "error: darcs-all must be run from the top level of the ghc tree."
}
+ while ($#_ ne -1) {
+ my $arg = shift;
+ if ($arg eq "-q") {
+ $verbose = 0;
+ }
+ elsif ($arg eq "--extra") {
+ $extra = 1;
+ }
+ elsif ($arg eq "--nofib") {
+ $nofib = 1;
+ }
+ elsif ($arg eq "--testsuite") {
+ $testsuite = 1;
+ }
+ else {
+ unshift @_, $arg;
+ last;
+ }
+ }
+
if ($#_ eq -1) {
die "What do you want to do?";
}