Skip to content
Snippets Groups Projects
Commit d4c704e7 authored by Camille Simiand's avatar Camille Simiand
Browse files

Merge branch 'tuleap-188-remove-legacy-production-links' into 'main'

tuleap-188 : fix hard link to production on project deletion

See merge request !70
parents 2914c00c 0a8f6754
No related branches found
No related tags found
1 merge request!70tuleap-188 : fix hard link to production on project deletion
Pipeline #882 failed
......@@ -310,7 +310,7 @@
if(!file_exists("create.zip")) {
$retours["value"] .= "Download of create.zip... ";
downloadFile("http://project.memorekall.fr/create.zip", "create.zip");
downloadFile($_ENV('LEGACY_URL') . "create.zip", "create.zip");
}
$zip = new ZipArchive;
......
......@@ -39,7 +39,7 @@
echo "Copie de create.zip -> ".$entry."/php/create.zip\n";
copy("create.zip", $entry."/php/create.zip");
$url = "http://project.memorekall.com/".$entry."/php/project.php?update=now";
$url = $_ENV('LEGACY_URL') .$entry."/php/project.php?update=now";
echo "Update de ".$url."\n";
openUrl($url);
}
......
......@@ -309,7 +309,7 @@
if(!file_exists("create.zip")) {
$retours["value"] .= "Download of create.zip... ";
downloadFile("http://project.memorekall.fr/create.zip", "create.zip");
downloadFile($_ENV('LEGACY_URL') . "create.zip", "create.zip");
}
$zip = new ZipArchive;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment