1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 12:41:51 +02:00

e107_make.php: Remove export folder after creating releases

This commit is contained in:
Nick Liu 2020-04-04 17:40:18 -05:00
parent d53f4f6338
commit 729694b266
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637

View File

@ -249,7 +249,7 @@ class e107Build
if ($rel['type'] == 'full')
{
$this->CreateCoreImage(); // Create Image
$this->createCoreImage(); // Create Image
}
$this->copyCoreImage();
@ -310,7 +310,8 @@ class e107Build
unlink($tarfile);
} // end loop
$this->status('Removing export folder', true);
$this->rmdir($this->exportDir);
}
private function emptyExportDir()