summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2003-03-08 17:26:17 +0100
committerjustdave%syndicomm.com <>2003-03-08 17:26:17 +0100
commitcd63e63ef7cac942ac11c4007d35725fd38ee9be (patch)
tree524f464db09c38b56298596cc8594c2d8bade24d /checksetup.pl
parent0d52e2ad5be670a22d1ba1ba39d6d5acaaf73811 (diff)
downloadbugzilla-cd63e63ef7cac942ac11c4007d35725fd38ee9be.tar.gz
bugzilla-cd63e63ef7cac942ac11c4007d35725fd38ee9be.tar.xz
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
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index a4824f57d..6c3fc57b7 100755
--- a/checksetup.pl
+++ b/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