Bug 194345: checksetup.pl would die if you had your params set for a local dot,…

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
parent 0d52e2ad
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment