1
0
Fork 0

Merge pull request #1054 from mheleniak/clean_up_bat_files

Clean up *.bat files when binary is removed
pull/1018/merge
Jordi Boggiano 2012-09-04 09:04:58 -07:00
commit e0dc045955
1 changed files with 5 additions and 3 deletions

View File

@ -226,10 +226,12 @@ class LibraryInstaller implements InstallerInterface
}
foreach ($binaries as $bin) {
$link = $this->binDir.'/'.basename($bin);
if (!file_exists($link)) {
continue;
if (file_exists($link)) {
unlink($link);
}
if (file_exists($link.'.bat')) {
unlink($link.'.bat');
}
unlink($link);
}
}