Explorar o código

Merge pull request #253 from bclozel/issue_251

fix typo in pull request 252 for issue #251
Jordi Boggiano %!s(int64=13) %!d(string=hai) anos
pai
achega
4540539a7e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/Composer/Repository/Vcs/HgDriver.php

+ 1 - 1
src/Composer/Repository/Vcs/HgDriver.php

@@ -186,7 +186,7 @@ class HgDriver extends VcsDriver implements VcsDriverInterface
         }
 
         $processExecutor = new ProcessExecutor();
-        $exit = $processExecutor->process->execute(sprintf('cd %s && hg identify %s', escapeshellarg(sys_get_temp_dir()), escapeshellarg($url)), $ignored);
+        $exit = $processExecutor->execute(sprintf('cd %s && hg identify %s', escapeshellarg(sys_get_temp_dir()), escapeshellarg($url)), $ignored);
         return $exit === 0;
     }
 }