summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-04-20 23:41:44 +0200
committerjustdave%syndicomm.com <>2001-04-20 23:41:44 +0200
commit8aaf2b48d8827d16245563a4fb4ac7a7055d638f (patch)
treea493a825823bcd38c6a19ac4f6f5eae729cebf3b /checksetup.pl
parent7e7c4e20b8fa00c156f6ba06a371482d29d8a7ce (diff)
downloadbugzilla-8aaf2b48d8827d16245563a4fb4ac7a7055d638f.tar.gz
bugzilla-8aaf2b48d8827d16245563a4fb4ac7a7055d638f.tar.xz
another chmod with a leading 1 (Perl interprets this as a decimal instead of octal)
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 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';
}