From 8aaf2b48d8827d16245563a4fb4ac7a7055d638f Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Fri, 20 Apr 2001 21:41:44 +0000 Subject: another chmod with a leading 1 (Perl interprets this as a decimal instead of octal) --- checksetup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index b2c479c83..2953f9b2b 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'; } -- cgit v1.2.3-24-g4f1b