コード例 #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);
 }