1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +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

View File

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