mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
67b8f9d35d
tagline copied from mail Reviewed by: epriestley See: <https://github.com/facebook/phabricator/pull/446>
22 lines
494 B
PHP
Executable file
22 lines
494 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
$args = new PhutilArgumentParser($argv);
|
|
$args->setTagline('manage cache');
|
|
$args->setSynopsis(<<<EOSYNOPSIS
|
|
**cache** __command__ [__options__]
|
|
Manage Phabricator caches.
|
|
|
|
EOSYNOPSIS
|
|
);
|
|
$args->parseStandardArguments();
|
|
|
|
$workflows = array(
|
|
new PhabricatorCacheManagementPurgeWorkflow(),
|
|
new PhutilHelpArgumentWorkflow(),
|
|
);
|
|
|
|
$args->parseWorkflows($workflows);
|