1
0
Fork 0

Clean Git repos during discard

pull/8980/head
Michael Stucki 2020-06-15 21:42:41 +02:00
parent 6630519882
commit ae59047166
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
protected function discardChanges($path)
{
$path = $this->normalizePath($path);
if (0 !== $this->process->execute('git reset --hard', $output, $path)) {
if (0 !== $this->process->execute('git clean -df && git reset --hard', $output, $path)) {
throw new \RuntimeException("Could not reset changes\n\n:".$this->process->getErrorOutput());
}