Changeset View
Changeset View
Standalone View
Standalone View
scripts/setup/manage_nuance.php
- This file was added.
| Property | Old Value | New Value |
|---|---|---|
| File Mode | null | 100755 |
| #!/usr/bin/env php | |||||
| <?php | |||||
| $root = dirname(dirname(dirname(__FILE__))); | |||||
| require_once $root.'/scripts/__init_script__.php'; | |||||
| $args = new PhutilArgumentParser($argv); | |||||
| $args->setTagline(pht('manage Nuance')); | |||||
| $args->setSynopsis(<<<EOSYNOPSIS | |||||
| **nuance** __command__ [__options__] | |||||
| Manage and debug Nuance. | |||||
| EOSYNOPSIS | |||||
| ); | |||||
| $args->parseStandardArguments(); | |||||
| $workflows = id(new PhutilClassMapQuery()) | |||||
| ->setAncestorClass('NuanceManagementWorkflow') | |||||
| ->execute(); | |||||
| $workflows[] = new PhutilHelpArgumentWorkflow(); | |||||
| $args->parseWorkflows($workflows); | |||||