Fix runtime error in repro build

Reference Docker rather than Podman in the error, otherwise it can be misleading.
This commit is contained in:
Alexis Métaireau 2025-04-22 12:52:03 +02:00
parent 06cbb13269
commit 66b906a8ee
No known key found for this signature in database
GPG key ID: C65C7A89A8FFC56E

View file

@ -156,7 +156,7 @@ def parse_buildkit_args(args, runtime: str) -> str:
return []
if runtime != "podman":
raise RuntimeError("Cannot specify BuildKit arguments using the Podman runtime")
raise RuntimeError("Cannot specify BuildKit arguments using the Docker runtime")
return shlex.split(args.buildkit_args)