From 1c4ebd95ef85a27c30391c17ee38a0afe1f7607e Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" Date: Sat, 8 Mar 2003 08:26:17 +0000 Subject: [PATCH] Bug 194345: checksetup.pl would die if you had your params set for a local dot, and the executable didn't exist. The polite error message it was supposed to print works now. r= burnus, a= justdave git-svn-id: svn://10.0.0.236/trunk@139149 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/checksetup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/checksetup.pl b/mozilla/webtools/bugzilla/checksetup.pl index a4824f57ddf..6c3fc57b7bc 100755 --- a/mozilla/webtools/bugzilla/checksetup.pl +++ b/mozilla/webtools/bugzilla/checksetup.pl @@ -1315,7 +1315,7 @@ if( Param('webdotbase') && Param('webdotbase') !~ /^https?:/ ) { if(-x Param('webdotbase')) { print "ok: found\n" unless $silent; } else { - print "not a valid executable: " . Param{'webdotbase'} . "\n"; + print "not a valid executable: " . Param('webdotbase') . "\n"; } # Check .htaccess allows access to generated images