Browse Source

Fix regex escaping, fixes #5674

Jordi Boggiano 8 years ago
parent
commit
ec2660fe78
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/EventDispatcher/EventDispatcher.php

+ 1 - 1
src/Composer/EventDispatcher/EventDispatcher.php

@@ -226,7 +226,7 @@ class EventDispatcher
                 $possibleLocalBinaries = $this->composer->getPackage()->getBinaries();
                 if ($possibleLocalBinaries) {
                     foreach ($possibleLocalBinaries as $localExec) {
-                        if (preg_match("/\b${callable}$/", $localExec)) {
+                        if (preg_match('{\b'.preg_quote($callable).'$}', $localExec)) {
                             $caller = BinaryInstaller::determineBinaryCaller($localExec);
                             $exec = preg_replace('{^'.preg_quote($callable).'}', $caller . ' ' . $localExec, $exec);
                             break;