From 66b906a8ee6f27894da1acb7a22bf539b9346564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Tue, 22 Apr 2025 12:52:03 +0200 Subject: [PATCH] Fix runtime error in repro build Reference Docker rather than Podman in the error, otherwise it can be misleading. --- dev_scripts/repro-build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_scripts/repro-build.py b/dev_scripts/repro-build.py index 48bb835..738020c 100755 --- a/dev_scripts/repro-build.py +++ b/dev_scripts/repro-build.py @@ -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)