Changeset View
Changeset View
Standalone View
Standalone View
src/repository/api/ArcanistSubversionAPI.php
| Show All 30 Lines | if ($svn_dir === null) { | ||||
| $svn_dir = $possible_svn_dir; | $svn_dir = $possible_svn_dir; | ||||
| break; | break; | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| return $svn_dir; | return $svn_dir; | ||||
| } | } | ||||
| protected function buildLocalFuture(array $argv) { | protected function getBinaryName() { | ||||
| return 'svn'; | |||||
| $argv[0] = 'svn '.$argv[0]; | |||||
| $future = newv('ExecFuture', $argv); | |||||
| $future->setCWD($this->getPath()); | |||||
| return $future; | |||||
| } | } | ||||
| protected function buildCommitRangeStatus() { | protected function buildCommitRangeStatus() { | ||||
| // In SVN, the commit range is always "uncommitted changes", so these | // In SVN, the commit range is always "uncommitted changes", so these | ||||
| // statuses are equivalent. | // statuses are equivalent. | ||||
| return $this->getUncommittedStatus(); | return $this->getUncommittedStatus(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 639 Lines • Show Last 20 Lines | |||||