Lines Matching +full:continue +full:- +full:on +full:- +full:error

21      * Register options and arguments on the given $options object
28 $options->setHelp(
32 "$> ./bin/gittool.php origin -v"
35 $options->registerArgument(
41 $options->registerCommand(
46 $options->registerArgument(
53 $options->registerCommand(
58 $options->registerArgument(
65 $options->registerCommand(
70 $options->registerCommand(
87 $command = $options->getCmd();
88 $args = $options->getArgs();
93 echo $options->help();
96 $this->cmdClone($args);
99 $this->cmdInstall($args);
103 $this->cmdRepos();
106 $this->cmdGit($command, $args);
121 $repo = $this->getSourceRepo($ext);
124 $this->error("could not find a repository for $ext");
126 } elseif ($this->cloneExtension($ext, $repo)) {
134 …if ($succeeded) $this->success('successfully cloned the following extensions: ' . implode(', ', $s…
135 … if ($errors) $this->error('failed to clone the following extensions: ' . implode(', ', $errors));
149 $repo = $this->getSourceRepo($ext);
152 $this->info("could not find a repository for $ext");
156 $this->info("installing $ext via download");
157 $installer->installFromId($ext);
158 $this->success("installed $ext via download");
161 $this->error("failed to install $ext via download");
164 } elseif ($this->cloneExtension($ext, $repo)) {
172 …if ($succeeded) $this->success('successfully installed the following extensions: ' . implode(', ',…
173 …if ($errors) $this->error('failed to install the following extensions: ' . implode(', ', $errors));
184 $repos = $this->findRepos();
192 $this->error("Could not change into $repo");
193 continue;
196 $this->info("executing $shell in $repo");
201 $this->success("git succeeded in $repo");
203 $this->error("git failed in $repo");
213 $repos = $this->findRepos();
234 $this->info("cloning $ext from $repo to $target");
238 $this->success("cloning of $ext succeeded");
241 $this->error("cloning of $ext failed");
255 $this->info('Looking for .git directories');
263 $this->error('Found no .git directories');
265 $this->success('Found ' . count($data) . ' .git directories');
281 $repourl = $extension->getSourcerepoURL();
300 // match bitbucket repos - most people seem to use mercurial there though
313 $cli->run();