Avoid clearing the error output during removeDirectory execution, losing git error output, fixes #8351
parent
6a335a459c
commit
ae9cc3db58
|
@ -215,10 +215,12 @@ class Git
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$errorMsg = $this->process->getErrorOutput();
|
||||||
if ($initialClone) {
|
if ($initialClone) {
|
||||||
$this->filesystem->removeDirectory($origCwd);
|
$this->filesystem->removeDirectory($origCwd);
|
||||||
}
|
}
|
||||||
$this->throwException('Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput(), $url);
|
|
||||||
|
$this->throwException('Failed to execute ' . $command . "\n\n" . $errorMsg, $url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue