chmod, even if not chgrp'ing.
authorJan Schneider <jan@horde.org>
Fri, 15 Jan 2010 00:42:23 +0000 (01:42 +0100)
committerJan Schneider <jan@horde.org>
Fri, 15 Jan 2010 00:42:23 +0000 (01:42 +0100)
framework/bin/install_dev

index a467a28..9610a6a 100755 (executable)
@@ -65,13 +65,13 @@ while ($it->valid()) {
     $it->next();
 }
 
+if ($debug) {
+    print "\nCHGRP/CHMOD static directory\n";
+}
 if (!empty($static_group)) {
-    if ($debug) {
-        print "\nCHGRP/CHMOD static directory\n";
-    }
     chgrp($web_dir . '/static', $static_group);
-    chmod($web_dir . '/static', $static_mode);
 }
+chmod($web_dir . '/static', $static_mode);
 
 print "\nLINKING framework\n";
 mkdir($web_dir . '/libs');