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:
authorThomas Steur <thomas.steur@googlemail.com>2014-11-04 02:07:22 +0300
committerThomas Steur <thomas.steur@googlemail.com>2014-11-04 02:07:46 +0300
commit0de3ff0782bebc64793b7c18c29afd9c00e86eb4 (patch)
treea0bec4c7ae7cda36cbea3a7810e23a5428b278f8
parent91cb86e2882e412d0c4463409e3beaa15272f293 (diff)
refs #6429 clean submodules before fetching any data [skip-ci]
-rw-r--r--plugins/TestRunner/Runner/Remote.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TestRunner/Runner/Remote.php b/plugins/TestRunner/Runner/Remote.php
index 6525e9fae7..49127c45f9 100644
--- a/plugins/TestRunner/Runner/Remote.php
+++ b/plugins/TestRunner/Runner/Remote.php
@@ -28,10 +28,10 @@ class Remote
$this->ssh->exec('git reset --hard');
$this->ssh->exec('git submodule foreach --recursive git reset --hard');
$this->ssh->exec('git clean -d -f');
+ $this->ssh->exec('git submodule foreach git clean -f');
$this->ssh->exec('git fetch --all');
$this->ssh->exec('git checkout ' . trim($gitHash));
$this->ssh->exec('git submodule update --recursive --force');
- $this->ssh->exec('git submodule foreach git clean -f');
$this->ssh->exec('composer.phar install');
}