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:
authormattab <matthieu.aubry@gmail.com>2014-11-28 06:39:54 +0300
committermattab <matthieu.aubry@gmail.com>2014-11-28 06:39:54 +0300
commitf0311f6f67db6d7bc0db736f9a40339d4bed61c1 (patch)
treeb17f7216fe644a491ba7086f5a3902c74d2b0ecc /plugins/CoreConsole
parentac9f4be7a9c473eff4c08c8a441a67b02867114c (diff)
Reorganise commands so it works
Diffstat (limited to 'plugins/CoreConsole')
-rw-r--r--plugins/CoreConsole/Commands/DevelopmentSyncUITestScreenshots.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CoreConsole/Commands/DevelopmentSyncUITestScreenshots.php b/plugins/CoreConsole/Commands/DevelopmentSyncUITestScreenshots.php
index 987a434d93..f80864ad43 100644
--- a/plugins/CoreConsole/Commands/DevelopmentSyncUITestScreenshots.php
+++ b/plugins/CoreConsole/Commands/DevelopmentSyncUITestScreenshots.php
@@ -100,13 +100,13 @@ class DevelopmentSyncUITestScreenshots extends ConsoleCommand
$output->writeln("If all downloaded screenshots are valid you may push them with these commands:");
$output->writeln('');
$commands = "cd tests/PHPUnit/UI/
-git add expected-ui-screenshots/
git pull
+git add expected-ui-screenshots/
git commit -m'' # WRITE A COMMIT MESSAGE
git push
cd ..
-git add UI
git pull
+git add UI
git commit -m'' #WRITE A COMMIT MESSAGE
git push";
$output->writeln($commands);