mirror of
https://gitlab.archlinux.org/archlinux/archlinux-docker.git
synced 2025-08-07 14:47:14 +02:00
Fix format string
This commit is contained in:
parent
c786b40a38
commit
dba6a9053a
@ -25,7 +25,7 @@ def upload(name):
|
|||||||
print(f"Uploading {name}.tar.xz")
|
print(f"Uploading {name}.tar.xz")
|
||||||
filename = f"{name}-{build_date}.tar.xz"
|
filename = f"{name}-{build_date}.tar.xz"
|
||||||
uploaded_url = project.upload(
|
uploaded_url = project.upload(
|
||||||
filename, filepath="output/{name}.tar.xz"
|
filename, filepath=f"output/{name}.tar.xz"
|
||||||
)["url"]
|
)["url"]
|
||||||
template = Path("Dockerfile.template").read_text()
|
template = Path("Dockerfile.template").read_text()
|
||||||
full_url = f"{project_url}{uploaded_url}"
|
full_url = f"{project_url}{uploaded_url}"
|
||||||
|
Loading…
Reference in New Issue
Block a user