X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/f5d5beae735bad2ba8a855c93f55e1c2b11f0244..b6720ebe0e65a840c84ed6b9ee98f667b28f1a22:/src/shpub/Cli.php diff --git a/src/shpub/Cli.php b/src/shpub/Cli.php index 19f93d7..6cc77dc 100644 --- a/src/shpub/Cli.php +++ b/src/shpub/Cli.php @@ -24,13 +24,17 @@ class Cli $res->command->args['server'], $res->command->args['user'], $res->command->args['key'], - $res->command->options['force'] + $res->command->options['force'], + $res->command->options['scope'] ); break; case 'server': $cmd = new Command_Server($this->cfg); - $cmd->run($res->command->options['verbose']); + $cmd->run( + $res->command->args['server'], + $res->command->options['verbose'] + ); break; default: @@ -49,7 +53,7 @@ class Cli /** * Let the CLI option parser parse the options. * - * @param object $parser Option parser + * @param object $optParser Option parser * * @return object Parsed command line parameters */ @@ -91,7 +95,7 @@ class Cli $optParser = new \Console_CommandLine(); $optParser->name = 'shpub'; $optParser->description = 'Command line micropub client'; - $optParser->version = '0.2.1'; + $optParser->version = '0.3.0'; $optParser->subcommand_required = true; $optParser->addOption( @@ -118,6 +122,7 @@ class Cli Command_Connect::opts($optParser); Command_Server::opts($optParser); + Command_Targets::opts($optParser); Command_Article::opts($optParser); Command_Note::opts($optParser);