Allow arbitrary repository URL

This commit is contained in:
Sanpi 2013-06-19 17:47:25 +02:00
commit 7f09e4df07
3 changed files with 15 additions and 3 deletions

View file

@ -28,6 +28,9 @@ class BuildFactory
{
switch($base->getProject()->getType())
{
case 'remote':
$type = 'RemoteGitBuild';
break;
case 'local':
$type = 'LocalBuild';
break;