Skip to content

Commit 13c8103

Browse files
committed
Fix "empty object" syntax
(follow-up to 9981bc2 / #48)
1 parent 45495e5 commit 13c8103

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

update.sh/vars.groovy

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,25 @@ def defaultRepoMeta = [
1313
['bot-branch', true],
1414
]
1515
def rawReposData = [
16-
['buildpack-deps', []],
16+
['buildpack-deps', [:]],
1717
['busybox', [
1818
'pipeline-script': 'update.sh/legacy-pipeline.groovy',
1919
'env': 'BUSYBOX_VERSION',
2020
'update-script': 'true', // TODO determine if more can/should be done here
2121
]],
22-
['cassandra', []],
23-
['docker', []],
24-
['drupal', []],
25-
['gcc', []],
22+
['cassandra', [:]],
23+
['docker', [:]],
24+
['drupal', [:]],
25+
['gcc', [:]],
2626
['ghost', [
2727
'pipeline-script': 'update.sh/legacy-pipeline.groovy',
2828
'env': 'GHOST_VERSION',
2929
'otherEnvs': [
3030
['ghost-cli', 'GHOST_CLI_VERSION'],
3131
],
3232
]],
33-
['golang', []],
34-
['haproxy', []],
33+
['golang', [:]],
34+
['haproxy', [:]],
3535
['hello-world', [
3636
'pipeline-script': 'update.sh/legacy-pipeline.groovy',
3737
'update-script': 'true',
@@ -44,20 +44,20 @@ def rawReposData = [
4444
['openssl', 'OPENSSL_VERSION'],
4545
],
4646
]],
47-
['julia', []],
48-
['memcached', []],
49-
['mongo', []],
50-
['mysql', []],
51-
['openjdk', []],
52-
['php', []],
53-
['postgres', []],
54-
['pypy', []],
55-
['python', []],
56-
['rabbitmq', []],
57-
['redmine', []],
58-
['ruby', []],
59-
['tomcat', []],
60-
['wordpress', []],
47+
['julia', [:]],
48+
['memcached', [:]],
49+
['mongo', [:]],
50+
['mysql', [:]],
51+
['openjdk', [:]],
52+
['php', [:]],
53+
['postgres', [:]],
54+
['pypy', [:]],
55+
['python', [:]],
56+
['rabbitmq', [:]],
57+
['redmine', [:]],
58+
['ruby', [:]],
59+
['tomcat', [:]],
60+
['wordpress', [:]],
6161

6262
// TODO it would be great to have one of these jobs per namespace ("mcr.microsoft.com/windows", "redhat", etc.)
6363
['external-pins', [

0 commit comments

Comments
 (0)