Skip to content

Commit

Permalink
Fix test for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
xepozz committed May 28, 2024
1 parent 57195e0 commit 39e7a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Inspector/Command/BashCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function run(): CommandResponse
->setTimeout(null)
->run();

$processOutput = $process->getOutput();
$processOutput = rtrim($process->getOutput(), PHP_EOL);

if (!$process->getExitCode() > 1) {
return new CommandResponse(
Expand Down

0 comments on commit 39e7a54

Please sign in to comment.