1
0
Fork 0

Fix tests

pull/5208/head
Jordi Boggiano 2016-04-15 16:28:47 +01:00
parent b31052fcde
commit e4711326a4
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
return;
}
$command = 'git status --porcelain ' . ($showUntracked ? '' : ' --untracked-files=no');
$command = 'git status --porcelain' . ($showUntracked ? '' : ' --untracked-files=no');
if (0 !== $this->process->execute($command, $output, $path)) {
throw new \RuntimeException('Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput());
}