File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,15 +48,15 @@ public static function createRequiredFiles(Event $event) {
48
48
];
49
49
drupal_rewrite_settings ($ settings , $ drupalRoot . '/sites/default/settings.php ' );
50
50
$ fs ->chmod ($ drupalRoot . '/sites/default/settings.php ' , 0666 );
51
- $ event ->getIO ()->write ("Create a sites/default/settings.php file with chmod 0666 " );
51
+ $ event ->getIO ()->write ("Created a sites/default/settings.php file with chmod 0666 " );
52
52
}
53
53
54
54
// Create the files directory with chmod 0777
55
55
if (!$ fs ->exists ($ drupalRoot . '/sites/default/files ' )) {
56
56
$ oldmask = umask (0 );
57
57
$ fs ->mkdir ($ drupalRoot . '/sites/default/files ' , 0777 );
58
58
umask ($ oldmask );
59
- $ event ->getIO ()->write ("Create a sites/default/files directory with chmod 0777 " );
59
+ $ event ->getIO ()->write ("Created a sites/default/files directory with chmod 0777 " );
60
60
}
61
61
}
62
62
You can’t perform that action at this time.
0 commit comments