Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benaka@piwik.pro>2015-07-22 04:50:03 +0300
committerdiosmosis <benaka@piwik.pro>2015-07-22 04:50:03 +0300
commit09d577e380bd61913ad6466f7f50835fee27d239 (patch)
tree09eafd2772d523fd0cf934fec199d8e844812955 /plugins/TestRunner
parent755559df882c17a095480e7b72efcca5bb770bbb (diff)
Plugin moving has to be done after submodules are updated for plugins that are also submodules, so instead allow repo root to be overridden through command and use in autoupdating.
Diffstat (limited to 'plugins/TestRunner')
-rw-r--r--plugins/TestRunner/Commands/GenerateTravisYmlFile.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/TestRunner/Commands/GenerateTravisYmlFile.php b/plugins/TestRunner/Commands/GenerateTravisYmlFile.php
index c20cf1b315..5e1ac7d181 100644
--- a/plugins/TestRunner/Commands/GenerateTravisYmlFile.php
+++ b/plugins/TestRunner/Commands/GenerateTravisYmlFile.php
@@ -38,7 +38,8 @@ class GenerateTravisYmlFile extends ConsoleCommand
. "If not supplied, the .travis.yml will fail the build if it needs updating.")
->addOption('php-versions', null, InputOption::VALUE_OPTIONAL,
"List of PHP versions to test against, ie, 5.4,5.5,5.6. Defaults to: 5.3.3,5.4,5.5,5.6.")
- ->addOption('dump', null, InputOption::VALUE_REQUIRED, "Debugging option. Saves the output .travis.yml to the specified file.");
+ ->addOption('dump', null, InputOption::VALUE_REQUIRED, "Debugging option. Saves the output .travis.yml to the specified file.")
+ ->addOption('repo-root-dir', null, InputOption::VALUE_REQUIRED, "Path to the repo for whom a .travis.yml file will be generated for.");
}
protected function execute(InputInterface $input, OutputInterface $output)