Summary: Progress to fix T2903 Test Plan: Ran './bin/lipsum help' and 'generate' workflows. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2903 Differential Revision: https://secure.phabricator.com/D5672
		
			
				
	
	
		
			23 lines
		
	
	
		
			503 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			503 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 lipsum');
 | 
						|
$args->setSynopsis(<<<EOSYNOPSIS
 | 
						|
**lipsum** __command__ [__options__]
 | 
						|
    Manage Phabricator Test Data Generator.
 | 
						|
 | 
						|
EOSYNOPSIS
 | 
						|
  );
 | 
						|
$args->parseStandardArguments();
 | 
						|
 | 
						|
$workflows = array(
 | 
						|
  new PhabricatorLipsumGenerateWorkflow(),
 | 
						|
  new PhutilHelpArgumentWorkflow(),
 | 
						|
);
 | 
						|
 | 
						|
$args->parseWorkflows($workflows);
 |