Skip to content

Commit

Permalink
fix: Get the raw output for the Composer version
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry committed Oct 11, 2023
1 parent b7e493d commit 4e78fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Composer/ComposerOrchestrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static function getVersion(
$logger = new CompilerLogger($io ?? IO::createNull());

$composerExecutable = $composerBin ?? self::retrieveComposerExecutable();
$getVersionProcess = new Process([$composerExecutable, '--version']);
$getVersionProcess = new Process([$composerExecutable, '--version', '--no-ansi']);

$logger->log(
CompilerLogger::CHEVRON_PREFIX,
Expand Down

0 comments on commit 4e78fca

Please sign in to comment.