Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistCoverWorkflow.php
| Show All 33 Lines | return array( | ||||
| 'rev' => array( | 'rev' => array( | ||||
| 'param' => 'revision', | 'param' => 'revision', | ||||
| 'help' => 'Cover changes since a specific revision.', | 'help' => 'Cover changes since a specific revision.', | ||||
| 'supports' => array( | 'supports' => array( | ||||
| 'git', | 'git', | ||||
| 'hg', | 'hg', | ||||
| ), | ), | ||||
| 'nosupport' => array( | 'nosupport' => array( | ||||
| 'svn' => "cover does not currently support --rev in svn.", | 'svn' => 'cover does not currently support --rev in svn.', | ||||
| ), | ), | ||||
| ), | ), | ||||
| '*' => 'paths', | '*' => 'paths', | ||||
| ); | ); | ||||
| } | } | ||||
| public function requiresWorkingCopy() { | public function requiresWorkingCopy() { | ||||
| return true; | return true; | ||||
| ▲ Show 20 Lines • Show All 122 Lines • Show Last 20 Lines | |||||