Skip to content
Extraits de code Groupes Projets
Valider 5c5b7c30 rédigé par mattab's avatar mattab
Parcourir les fichiers

Refs #7419 Make getDownloadToPath logic clear

parent 7b12ff20
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -128,20 +128,20 @@ cd ../../../../../\n\n"; ...@@ -128,20 +128,20 @@ cd ../../../../../\n\n";
protected function getDownloadToPath($plugin) protected function getDownloadToPath($plugin)
{ {
$downloadTo = PIWIK_DOCUMENT_ROOT . "/";
if (empty($plugin)) { if (empty($plugin)) {
$downloadTo .= "tests/UI/expected-ui-screenshots/"; return PIWIK_DOCUMENT_ROOT . "/tests/UI/expected-ui-screenshots/";
} else {
$downloadTo .= "plugins/$plugin/tests/UI/expected-ui-screenshots/";
} }
$downloadTo = PIWIK_DOCUMENT_ROOT . "/plugins/$plugin/tests/UI/expected-ui-screenshots/";
if(is_dir($downloadTo)) { if(is_dir($downloadTo)) {
return $downloadTo; return $downloadTo;
} }
// Maybe the plugin is using folder "Test/" instead of "tests/"
$downloadTo = str_replace("tests/", "Test/", $downloadTo); $downloadTo = str_replace("tests/", "Test/", $downloadTo);
if(is_dir($downloadTo)) { if(is_dir($downloadTo)) {
return $downloadTo; return $downloadTo;
} }
throw new \Exception("Download to path could not be found: $downloadTo"); throw new \Exception("Download to path could not be found: $downloadTo");
} }
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter