mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Fix runtime error in repro build
Reference Docker rather than Podman in the error, otherwise it can be misleading.
This commit is contained in:
parent
06cbb13269
commit
66b906a8ee
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ def parse_buildkit_args(args, runtime: str) -> str:
|
||||||
return []
|
return []
|
||||||
|
|
||||||
if runtime != "podman":
|
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)
|
return shlex.split(args.buildkit_args)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue