Made changes which fied warnings and errors in tests.
parent
19878c2dc1
commit
3f38eede8a
|
@ -48,7 +48,6 @@ class GitDownloader extends VcsDownloader
|
||||||
*/
|
*/
|
||||||
protected function enforceCleanDirectory($path)
|
protected function enforceCleanDirectory($path)
|
||||||
{
|
{
|
||||||
$output = array();
|
|
||||||
$this->process->execute(sprintf('cd %s && git status --porcelain', escapeshellarg($path)), $output);
|
$this->process->execute(sprintf('cd %s && git status --porcelain', escapeshellarg($path)), $output);
|
||||||
if (trim($output)) {
|
if (trim($output)) {
|
||||||
throw new \RuntimeException('Source directory has uncommitted changes');
|
throw new \RuntimeException('Source directory has uncommitted changes');
|
||||||
|
|
|
@ -48,7 +48,6 @@ class HgDownloader extends VcsDownloader
|
||||||
*/
|
*/
|
||||||
protected function enforceCleanDirectory($path)
|
protected function enforceCleanDirectory($path)
|
||||||
{
|
{
|
||||||
$output = array();
|
|
||||||
$this->process->execute(sprintf('cd %s && hg st', escapeshellarg($path)), $output);
|
$this->process->execute(sprintf('cd %s && hg st', escapeshellarg($path)), $output);
|
||||||
if (trim($output)) {
|
if (trim($output)) {
|
||||||
throw new \RuntimeException('Source directory has uncommitted changes');
|
throw new \RuntimeException('Source directory has uncommitted changes');
|
||||||
|
|
|
@ -100,4 +100,4 @@ abstract class VcsDownloader implements DownloaderInterface
|
||||||
* @throws \RuntimeException if the directory is not clean
|
* @throws \RuntimeException if the directory is not clean
|
||||||
*/
|
*/
|
||||||
abstract protected function enforceCleanDirectory($path);
|
abstract protected function enforceCleanDirectory($path);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue