Skip to content

Commit ee28354

Browse files
authored
Merge pull request from GHSA-47f6-5gq3-vx9c
1 parent 6bd43df commit ee28354

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Composer/Downloader/GitDownloader.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,9 @@ public function getUnpushedChanges(PackageInterface $package, string $path): ?st
294294
$unpushedChanges = null;
295295
}
296296
foreach ($remoteBranches as $remoteBranch) {
297-
$command = sprintf('git diff --name-status %s...%s --', $remoteBranch, $branch);
297+
$command = ['git', 'diff', '--name-status', $remoteBranch.'...'.$branch, '--'];
298298
if (0 !== $this->process->execute($command, $output, $path)) {
299-
throw new \RuntimeException('Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput());
299+
throw new \RuntimeException('Failed to execute ' . implode(' ', $command) . "\n\n" . $this->process->getErrorOutput());
300300
}
301301

302302
$output = trim($output);

0 commit comments

Comments
 (0)