1
0
Fork 0

Archive: cleanup temp dir on download error

pull/7897/head
Stephan Vock 2019-01-17 12:46:57 +01:00
parent 0e44d53bda
commit 59360983c6
1 changed files with 7 additions and 2 deletions

View File

@ -147,8 +147,13 @@ class ArchiveManager
$sourcePath = sys_get_temp_dir().'/composer_archive'.uniqid();
$filesystem->ensureDirectoryExists($sourcePath);
try {
// Download sources
$this->downloadManager->download($package, $sourcePath);
} catch (\Exception $e) {
$filesystem->removeDirectory($sourcePath);
throw $e;
}
// Check exclude from downloaded composer.json
if (file_exists($composerJsonPath = $sourcePath.'/composer.json')) {