Skip to content

Commit 4e8927f

Browse files
committed
Tried to fix logic when parsing space-separated tags
1 parent b9a4801 commit 4e8927f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cli/test_build_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_run(
9292
)
9393
for flag, value in flags:
9494
if isinstance(value, list) and value:
95-
build_cmd.extend([flag, *value])
95+
build_cmd.extend([flag, " ".join(value)])
9696
if isinstance(value, str) and value:
9797
build_cmd.extend([flag, value])
9898
if isinstance(value, bool) and value:

0 commit comments

Comments
 (0)