Fixed syntax error.

This commit is contained in:
Patrick Lehmann
2022-10-26 21:37:19 +02:00
parent b5f5716522
commit 477e89aba2

View File

@@ -143,8 +143,8 @@ jobs:
'runs-on': data['sys'][system]['runs-on'],
'shell': data['sys'][system]['shell'],
'pyicon': data['python'][version]['icon'],
'python': currentAlphaRelease if version == currentAlphaVersion else version
'envname' data['sys'][system]['name']
'python': currentAlphaRelease if version == currentAlphaVersion else version,
'envname': data['sys'][system]['name'],
}
for system in systems if system in data['sys']
for version in versions
@@ -156,8 +156,8 @@ jobs:
'runtime': runtime.upper(),
'shell': "msys2 {0}",
'pyicon': data['python'][currentMSYS2Version]['icon'],
'python': currentMSYS2Version
'envname' data['runtime'][runtime]['name']
'python': currentMSYS2Version,
'envname': data['runtime'][runtime]['name'],
}
for runtime in systems if runtime not in data['sys']
]