Skip to content

Commit

Permalink
Fix misplaced full stop in ScriptHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
jnoordsij authored and AlexSkrypnyk committed Jul 19, 2024
1 parent e380265 commit 62f98f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/composer/ScriptHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public static function checkComposerVersion(Event $event) {
$io->writeError('<warning>You are running a development version of Composer. If you experience problems, please update Composer to the latest stable version.</warning>');
}
elseif (Comparator::lessThan($version, '2.3.6')) {
$io->writeError('<error>Drupal-project requires Composer version 2.3.6 or higher. Please update your Composer before continuing</error>.');
$io->writeError('<error>Drupal-project requires Composer version 2.3.6 or higher. Please update your Composer before continuing.</error>');
exit(1);
}
}
Expand Down

0 comments on commit 62f98f3

Please sign in to comment.