diff --git a/src/Composer/Downloader/FileDownloader.php b/src/Composer/Downloader/FileDownloader.php index e55c4d09d..f74ef89dd 100644 --- a/src/Composer/Downloader/FileDownloader.php +++ b/src/Composer/Downloader/FileDownloader.php @@ -104,7 +104,7 @@ abstract class FileDownloader implements DownloaderInterface stream_context_set_params($ctx, array("notification" => array($this, 'callbackGet'))); $this->io->overwrite(" Downloading: connection...", false); - copy($url, $fileName, $ctx); + @copy($url, $fileName, $ctx); $this->io->overwrite(" Downloading"); if (!file_exists($fileName)) {