Skip to content

Commit

Permalink
Update GitDiffFileProvider.php
Browse files Browse the repository at this point in the history
Fix #1492
  • Loading branch information
sanmai authored and maks-rafalko committed Feb 25, 2021
1 parent 9441104 commit 37e9682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Logger/GitHub/GitDiffFileProvider.php
Expand Up @@ -52,7 +52,7 @@ public function provide(string $gitDiffFilter, string $gitDiffBase): string
{
return (string) shell_exec(
sprintf(
'git diff %s --diff-filter=%s --name-only | grep src/ | paste -sd ","',
'git diff %s --diff-filter=%s --name-only | grep src/ | paste -s -d "," -',
escapeshellarg($gitDiffBase),
escapeshellarg($gitDiffFilter)
)
Expand Down

0 comments on commit 37e9682

Please sign in to comment.