forked from Conjure-Tools/unity-runner
fixed grouping issue
This commit is contained in:
parent
2212e751ee
commit
c026fd0983
@ -108,7 +108,9 @@ def main():
|
|||||||
for tag in tags:
|
for tag in tags:
|
||||||
matches = pattern.match(tag)
|
matches = pattern.match(tag)
|
||||||
if matches:
|
if matches:
|
||||||
[ image_os, version, component ] = matches.groups()
|
groups = matches.groups()
|
||||||
|
version = groups[1]
|
||||||
|
component = groups[2]
|
||||||
if version not in versions:
|
if version not in versions:
|
||||||
versions[version] = {}
|
versions[version] = {}
|
||||||
versions[version][component] = tag
|
versions[version][component] = tag
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user