1
0
Fork 0

Check for changes before updating/removing svn checkouts

pull/223/merge
Jordi Boggiano 2012-01-22 20:08:45 +01:00
parent 9d2e479d6d
commit afa7fb8d75
1 changed files with 10 additions and 0 deletions

View File

@ -58,6 +58,7 @@ class SvnDownloader implements DownloaderInterface
throw new \InvalidArgumentException('The given package is missing reference information');
}
$this->enforceCleanDirectory($path);
$url = escapeshellarg($target->getSourceUrl());
$ref = escapeshellarg($target->getSourceReference());
$this->process->execute(sprintf('cd %s && svn switch %s/%s', $path, $url, $ref));
@ -68,7 +69,16 @@ class SvnDownloader implements DownloaderInterface
*/
public function remove(PackageInterface $package, $path)
{
$this->enforceCleanDirectory($path);
$fs = new Util\Filesystem();
$fs->removeDirectory($path);
}
private function enforceCleanDirectory($path)
{
$this->process->execute(sprintf('cd %s && svn status', $path), $output);
if (trim($output)) {
throw new \RuntimeException('Source directory has uncommitted changes');
}
}
}