1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-10 17:12:51 +00:00

Clean up temp dir

This commit is contained in:
Jordi Boggiano 2012-04-01 21:34:09 +02:00
parent 26b3a1711f
commit fd93f6d648

View file

@ -141,6 +141,11 @@ class ConsoleIO implements IOInterface
$value = rtrim(shell_exec($exe));
$this->write('');
// clean up
if (isset($tmpExe)) {
unlink($tmpExe);
}
return $value;
}