forked from GNUsocial/gnu-social
commandline processing handles errors better
This commit is contained in:
parent
495c85544a
commit
c755970141
@ -63,7 +63,14 @@ if (isset($longoptions)) {
|
|||||||
|
|
||||||
$parser = new Console_Getopt();
|
$parser = new Console_Getopt();
|
||||||
|
|
||||||
list($options, $args) = $parser->getopt($argv, $shortoptions, $longoptions);
|
$result = $parser->getopt($argv, $shortoptions, $longoptions);
|
||||||
|
|
||||||
|
if (PEAR::isError($result)) {
|
||||||
|
print $result->getMessage()."\n";
|
||||||
|
exit(1);
|
||||||
|
} else {
|
||||||
|
list($options, $args) = $result;
|
||||||
|
}
|
||||||
|
|
||||||
function show_help()
|
function show_help()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user