Build specific image tags

This commit is contained in:
Valentin Niess
2025-05-22 09:04:09 +02:00
parent 2f663acc32
commit a7c56e3c77
3 changed files with 13 additions and 3 deletions

View File

@@ -27,7 +27,8 @@ def execute(tag):
pythons.append((path.name, version))
pythons = sorted(pythons)
n = max(len(version) for (_, version) in pythons)
for (abi, version) in pythons:
log('LIST', "{:8} -> /opt/python/{:}".format(version, abi))
log('LIST', "{:{n}} -> /opt/python/{:}".format(version, abi, n=n))
return pythons