Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing WithProperties and a typo.
Browse files Browse the repository at this point in the history
whitequark committed Jan 19, 2018
1 parent c109dc7 commit 157b1a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion master.cfg
Original file line number Diff line number Diff line change
@@ -132,8 +132,9 @@ def condaEnv(use_local=False, extra_vars={}):
return env

def addUpdateSteps(factory, project):
defaultrepo = "https://github.com/m-labs/" + project
factory.addStep(
Git(repourl = '%(repository:-https://github.com/m-labs/{})'.format(project),
Git(repourl = WithProperties('%(repository:-{})s'.format(defaultrepo),
submodules = True,
mode = 'incremental',
progress = True))

0 comments on commit 157b1a6

Please sign in to comment.