diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-10 20:02:28 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-10 20:02:28 +0100 |
commit | a5307a0de94b396a15ff2c70f050934d17c5e62b (patch) | |
tree | 03747aac713f366e00fd262a73b2a8d4740e3005 /job-cfg | |
parent | 0bb8ec9964a44be97058159e09bd27db393ded19 (diff) | |
download | jenkins.debian.net-a5307a0de94b396a15ff2c70f050934d17c5e62b.tar.xz |
d-i: adapt to changes in j-j-b 1.3.0
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/d-i.yaml.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/job-cfg/d-i.yaml.py b/job-cfg/d-i.yaml.py index 5d178484..79a0fc05 100755 --- a/job-cfg/d-i.yaml.py +++ b/job-cfg/d-i.yaml.py @@ -149,14 +149,14 @@ def scm_svn(po, inc_regs=None): if inc_regs == None: inc_regs = os.path.join('/trunk/manual/', 'po' if po else '', '{lang}', '.*') - return [{'svn': {'excludedCommitMessages': '', + return [{'svn': {'excluded-commit-messages': '', 'url': 'svn://anonscm.debian.org/svn/d-i/trunk', 'basedir': '.', 'workspaceupdater': 'update', - 'includedRegions': inc_regs, - 'excludedUsers': '', - 'excludedRevprop': '', - 'excludedRegions': '', + 'included-regions': inc_regs, + 'excluded-users': '', + 'exclusion-revprop-name': '', + 'excluded-regions': '', 'viewvc-url': 'http://anonscm.debian.org/viewvc/d-i/trunk'}}] |