taskotron-dev: fix checking out git source

I accidently hardcoded file:// there when trying it locally.
This commit is contained in:
Kamil Páral 2019-02-07 15:25:44 +01:00
parent 04fa9437f4
commit bfde2ab3ea

View file

@ -168,7 +168,7 @@ factory.addStep(steps.ShellCommand(
# check out the source
factory.addStep(steps.Git(
repourl=util.Property('git_repo', default=util.Interpolate('file:///var/lib/git/mirror/fedoraqa/%(prop:taskname)s/')),
repourl=util.Property('git_repo', default=util.Interpolate('{{ grokmirror_user }}@{{ buildmaster }}:/var/lib/git/mirror/fedoraqa/%(prop:taskname)s/')),
branch=util.Property('git_branch', default='{{ grokmirror_default_branch }}'),
mode='full',
method='clobber',