From 87badf1db52d0f54fd83a940fb4a884b56e159ff Mon Sep 17 00:00:00 2001 From: Koosha Khajeh Moogahi Date: Sun, 3 Feb 2013 23:50:04 +0100 Subject: Bug 834770: testserver.pl should support uppercase URLs r/a=LpSolit --- testserver.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testserver.pl') diff --git a/testserver.pl b/testserver.pl index fc3b5b0ab..f00f551f9 100755 --- a/testserver.pl +++ b/testserver.pl @@ -25,7 +25,7 @@ my $datadir = bz_locations()->{'datadir'}; eval "require LWP; require LWP::UserAgent;"; my $lwp = $@ ? 0 : 1; -if ((@ARGV != 1) || ($ARGV[0] !~ /^https?:/)) +if ((@ARGV != 1) || ($ARGV[0] !~ /^https?:/i)) { say "Usage: $0 "; say "e.g.: $0 http://www.mycompany.com/bugzilla"; -- cgit v1.2.3-24-g4f1b