diff --git a/src/Composer/Downloader/FileDownloader.php b/src/Composer/Downloader/FileDownloader.php
index d05aa6ad2..372513331 100644
--- a/src/Composer/Downloader/FileDownloader.php
+++ b/src/Composer/Downloader/FileDownloader.php
@@ -171,7 +171,10 @@ class FileDownloader implements DownloaderInterface
{
$this->io->write(" - Removing " . $package->getName() . " (" . VersionParser::formatVersion($package) . ")");
if (!$this->filesystem->removeDirectory($path)) {
- throw new \RuntimeException('Could not completely delete '.$path.', aborting.');
+ // retry after a bit on windows since it tends to be touchy with mass removals
+ if (!defined('PHP_WINDOWS_VERSION_BUILD') || (usleep(250) && !$this->filesystem->removeDirectory($path))) {
+ throw new \RuntimeException('Could not completely delete '.$path.', aborting.');
+ }
}
}
diff --git a/src/Composer/Downloader/VcsDownloader.php b/src/Composer/Downloader/VcsDownloader.php
index 55a189b7b..c9b8dc150 100644
--- a/src/Composer/Downloader/VcsDownloader.php
+++ b/src/Composer/Downloader/VcsDownloader.php
@@ -128,7 +128,10 @@ abstract class VcsDownloader implements DownloaderInterface
$this->io->write(" - Removing " . $package->getName() . " (" . $package->getPrettyVersion() . ")");
$this->cleanChanges($path, false);
if (!$this->filesystem->removeDirectory($path)) {
- throw new \RuntimeException('Could not completely delete '.$path.', aborting.');
+ // retry after a bit on windows since it tends to be touchy with mass removals
+ if (!defined('PHP_WINDOWS_VERSION_BUILD') || (usleep(250) && !$this->filesystem->removeDirectory($path))) {
+ throw new \RuntimeException('Could not completely delete '.$path.', aborting.');
+ }
}
}