1
0
Fork 0

Add warning for all antivirus/firewalls on windows regardless of software

pull/12352/head
Jordi Boggiano 2025-03-24 14:53:43 +01:00
parent f685f071c3
commit 355f3ed808
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -502,6 +502,9 @@ class Application extends BaseApplication
if (is_array($avastDetect) && count($avastDetect) !== 0) {
$io->writeError('<error>The following exception indicates a possible issue with the Avast Firewall</error>', true, IOInterface::QUIET);
$io->writeError('<error>Check https://getcomposer.org/local-issuer for details</error>', true, IOInterface::QUIET);
} else {
$io->writeError('<error>The following exception indicates a possible issue with a Firewall/Antivirus</error>', true, IOInterface::QUIET);
$io->writeError('<error>Check https://getcomposer.org/local-issuer for details</error>', true, IOInterface::QUIET);
}
}