소스 검색

Merge branch 'master' of https://github.com/composer/composer

digitalkaoz 13 년 전
부모
커밋
bcef70d532
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
     }
 }