From: justdave%syndicomm.com <> Date: Fri, 20 Apr 2001 21:41:44 +0000 (+0000) Subject: another chmod with a leading 1 (Perl interprets this as a decimal instead of octal) X-Git-Tag: bugzilla-2.12~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8aaf2b48d8827d16245563a4fb4ac7a7055d638f;p=thirdparty%2Fbugzilla.git another chmod with a leading 1 (Perl interprets this as a decimal instead of octal) --- diff --git a/checksetup.pl b/checksetup.pl index b2c479c83c..2953f9b2ba 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -2055,7 +2055,7 @@ if (!($sth->fetchrow_arrayref()->[0])) { # a Bugzilla with the old data format, and so upgrade their data files. unless (-d 'graphs') { print "Creating graphs directory...\n"; - mkdir 'graphs', 1770; + mkdir 'graphs', 0770; if ($my_webservergroup eq "") { chmod 01777, 'graphs'; }