X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bin%2Fwanna-build-statistics;h=3d7b0d10b070e2e31ba148abc258d59294d30c16;hb=55fedfd5508b0805df3127a71afc0b40509511cb;hp=e828121266d061bee7bf07200b2dc016ec5399c9;hpb=ca63323f793d72b60f0574eb4202eb3a0c64618f;p=wannabuild.git diff --git a/bin/wanna-build-statistics b/bin/wanna-build-statistics index e828121..3d7b0d1 100755 --- a/bin/wanna-build-statistics +++ b/bin/wanna-build-statistics @@ -38,7 +38,7 @@ use strict; use vars qw($verbose $dist $database); $verbose = 0; -$dist = "unstable"; +$dist = "sid"; $database = "build-db"; while( @ARGV && $ARGV[0] =~ /^-/ ) { @@ -56,11 +56,6 @@ while( @ARGV && $ARGV[0] =~ /^-/ ) { else { $dist = shift @ARGV; } - $dist = "oldstable" if $dist eq "o"; - $dist = "stable" if $dist eq "s"; - $dist = "testing" if $dist eq "t"; - $dist = "unstable" if $dist eq "u"; - die "Bad distribution\n" if !isin($dist, qw(stable testing unstable stable-security testing-security oldstable oldstable-security)); } elsif (/^--$/) { last;