summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2006-02-28 23:39:00 +0100
committerjocuri%softhome.net <>2006-02-28 23:39:00 +0100
commit90e1688ef09332be00b31278f8d5ee7703ac81b2 (patch)
tree5bc8d02bc88eda0c195229b3bd2cb6c96c0037d5 /checksetup.pl
parentda1db1402be5d249990d1beb5f41390b92f7e0be (diff)
downloadbugzilla-90e1688ef09332be00b31278f8d5ee7703ac81b2.tar.gz
bugzilla-90e1688ef09332be00b31278f8d5ee7703ac81b2.tar.xz
Patch for bug 298341: Implement code hook mechanism; patch by zach@zachlipton.com, r=timeless, a=justdave.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl
index f5cf909d5..4c3997ddb 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -865,6 +865,12 @@ unless (-d $attachdir) {
mkdir $attachdir, 0770;
}
+# ZLL: 2005-08-20 Create extensions/ if it does not already exist:
+unless (-d $extensionsdir) {
+ print "Creating extensions directory ($extensionsdir) ...\n";
+ mkdir $extensionsdir, 0770;
+}
+
# 2000-12-14 New graphing system requires a directory to put the graphs in
# This code copied from what happens for the data dir above.