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 <tsteur@users.noreply.github.com>2018-02-04 23:55:59 +0300
committerStefan Giehl <stefan@piwik.org>2018-02-04 23:55:59 +0300
commit745d3290084f531e05bc6ca92826951a2a90873f (patch)
tree5fe6a16a02f142cf26b7580601d421db795cecd6 /plugins/CoreConsole
parent149d221d7ac8376f305ee74f14ca2522997a5f24 (diff)
Fix sync processed test files no longer work (#12537)
Diffstat (limited to 'plugins/CoreConsole')
-rw-r--r--plugins/CoreConsole/Commands/DevelopmentSyncProcessedSystemTests.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreConsole/Commands/DevelopmentSyncProcessedSystemTests.php b/plugins/CoreConsole/Commands/DevelopmentSyncProcessedSystemTests.php
index 2e7698235b..8e86adacc4 100644
--- a/plugins/CoreConsole/Commands/DevelopmentSyncProcessedSystemTests.php
+++ b/plugins/CoreConsole/Commands/DevelopmentSyncProcessedSystemTests.php
@@ -50,7 +50,7 @@ class DevelopmentSyncProcessedSystemTests extends ConsoleCommand
}
$filename = sprintf('system.%s.tar.bz2', $buildNumber);
- $urlBase = sprintf('https://builds-artifacts.piwik.org/matomo-org/piwik/%s', $filename);
+ $urlBase = sprintf('https://builds-artifacts.matomo.org/matomo-org/matomo/%s', $filename);
$tests = Http::sendHttpRequest($urlBase, $timeout = 120);
$tarFile = $tmpDir . $filename;