We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77e2c73 commit 3bed6daCopy full SHA for 3bed6da
chartpress.py
@@ -377,7 +377,8 @@ def build_image(
377
cmd.append("--push")
378
elif len(platforms) <= 1:
379
cmd.append("--load")
380
- cmd.extend((extra_build_command_options or []))
+ if extra_build_command_options:
381
+ cmd.extend(extra_build_command_options)
382
_check_call(cmd)
383
384
if builder == Builder.DOCKER_BUILD and push:
0 commit comments