|
@@ -26,12 +26,15 @@ class Release extends Command
|
|
|
->addOption('base-repo',null, InputOption::VALUE_REQUIRED, 'Git clone Url fot the app Base', "git@bitbucket.org:ikflowdat/base.git")
|
|
|
->addOption('base-ref', null, InputOption::VALUE_REQUIRED, 'Git reference (branch or tag) to clone the Base app', "master")
|
|
|
|
|
|
- ->addOption('ftth-repo',null, InputOption::VALUE_REQUIRED, 'Git clone Url fot the app Base', "git@bitbucket.org:ikflowdat/ftth.git")
|
|
|
- ->addOption('ftth-ref', null, InputOption::VALUE_REQUIRED, 'Git reference (branch or tag) to clone the Ftth appFtth', "master")
|
|
|
+ ->addOption('ftth-repo',null, InputOption::VALUE_REQUIRED, 'Git clone Url fot the app FTTH', "git@bitbucket.org:ikflowdat/ftth.git")
|
|
|
+ ->addOption('ftth-ref', null, InputOption::VALUE_REQUIRED, 'Git reference (branch or tag) to clone the Ftth ', "master")
|
|
|
|
|
|
- ->addOption('mapas-repo',null, InputOption::VALUE_REQUIRED, 'Git clone Url fot the app Base', "git@bitbucket.org:ikflowdat/mapas.git")
|
|
|
+ ->addOption('mapas-repo',null, InputOption::VALUE_REQUIRED, 'Git clone Url fot the app Mapas', "git@bitbucket.org:ikflowdat/mapas.git")
|
|
|
->addOption('mapas-ref', null, InputOption::VALUE_REQUIRED, 'Git reference (branch or tag) to clone the Mapas app', "master")
|
|
|
|
|
|
+ ->addOption('radius-repo',null, InputOption::VALUE_REQUIRED, 'Git clone Url fot the app radius', "git@bitbucket.org:ikflowdat/radius.git")
|
|
|
+ ->addOption('radius-ref', null, InputOption::VALUE_REQUIRED, 'Git reference (branch or tag) to clone the radius app', "master")
|
|
|
+
|
|
|
->addOption('stats-repo',null, InputOption::VALUE_REQUIRED, 'Git clone Url fot the app Base', "git@bitbucket.org:ikflowdat/stats.git")
|
|
|
->addOption('stats-ref', null, InputOption::VALUE_REQUIRED, 'Git reference (branch or tag) to clone the Stats app', "master")
|
|
|
|
|
@@ -70,6 +73,11 @@ class Release extends Command
|
|
|
'url' => $input->getOption("mapas-repo"),
|
|
|
'branch' => $input->getOption("mapas-ref"),
|
|
|
),
|
|
|
+ "radius" => array(
|
|
|
+ 'url' => $input->getOption("radius-repo"),
|
|
|
+ 'branch' => $input->getOption("radius-ref"),
|
|
|
+ ),
|
|
|
+
|
|
|
"stats" => array(
|
|
|
'url' => $input->getOption("stats-repo"),
|
|
|
'branch' => $input->getOption("stats-ref"),
|