예제 #1
0
파일: SrcDir.php 프로젝트: staabm/pickle
 public function execute($target, $no_convert)
 {
     /* Override target, otherwise we'd need to copy ext root each time */
     $target = realpath($this->path);
     $exe = DefaultExecutor::factory($this);
     return $exe->execute($target, $no_convert);
 }
예제 #2
0
파일: Git.php 프로젝트: jingdor/pickle
 public function execute($target, $no_convert)
 {
     $this->fetch($target);
     $exe = DefaultExecutor::factory($this);
     return $exe->execute($target, $no_convert);
 }