mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-04 20:00:59 +01:00
a9e316bf9c
Summary: This fixes some real issues. Test Plan: $ arc lint Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin, btrahan Differential Revision: https://secure.phabricator.com/D4795
32 lines
570 B
PHP
32 lines
570 B
PHP
<?php
|
|
|
|
/**
|
|
* @group workflow
|
|
*/
|
|
final class ArcanistAnoidWorkflow extends ArcanistBaseWorkflow {
|
|
|
|
public function getWorkflowName() {
|
|
return 'anoid';
|
|
}
|
|
|
|
public function getCommandSynopses() {
|
|
return phutil_console_format(<<<EOTEXT
|
|
**anoid**
|
|
EOTEXT
|
|
);
|
|
}
|
|
|
|
public function getCommandHelp() {
|
|
return phutil_console_format(<<<EOTEXT
|
|
There's only one way to find out...
|
|
EOTEXT
|
|
);
|
|
}
|
|
|
|
public function run() {
|
|
phutil_passthru(
|
|
'%s/scripts/breakout.py',
|
|
dirname(phutil_get_library_root('arcanist')));
|
|
}
|
|
|
|
}
|