diff --git a/src/Composer/Downloader/ZipDownloader.php b/src/Composer/Downloader/ZipDownloader.php
index 5ca7a2dab..6534db3d8 100644
--- a/src/Composer/Downloader/ZipDownloader.php
+++ b/src/Composer/Downloader/ZipDownloader.php
@@ -69,7 +69,8 @@ class ZipDownloader extends ArchiveDownloader
if (!self::$isWindows && !self::$hasSystemUnzip) {
$this->io->writeError("As there is no 'unzip' command installed zip files are being unpacked using the PHP zip extension.");
- $this->io->writeError("This may cause invalid reports of corrupted archives. Installing 'unzip' may remediate them.");
+ $this->io->writeError("This may cause invalid reports of corrupted archives. Besides, any UNIX permissions (e.g. executable) defined in the archives will be lost.");
+ $this->io->writeError("Installing 'unzip' may remediate them.");
}
}