Skip to content

Commit 34c463a

Browse files
foxtrotcharlieshrop
authored andcommitted
Change createRequiredFiles messages to reflect what occured (drupal-composer#467)
1 parent 8b4f17f commit 34c463a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/composer/ScriptHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ public static function createRequiredFiles(Event $event) {
4848
];
4949
drupal_rewrite_settings($settings, $drupalRoot . '/sites/default/settings.php');
5050
$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");
5252
}
5353

5454
// Create the files directory with chmod 0777
5555
if (!$fs->exists($drupalRoot . '/sites/default/files')) {
5656
$oldmask = umask(0);
5757
$fs->mkdir($drupalRoot . '/sites/default/files', 0777);
5858
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");
6060
}
6161
}
6262

0 commit comments

Comments
 (0)