Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Basti <mbasti@redhat.com>
  • Loading branch information
MartinBasti committed Sep 25, 2024
1 parent 09a89fd commit 2616fdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atomic_reactor/cli/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def binary_container_cachito(task_args: dict):
"""
params = TaskParams.from_cli_args(task_args)
task = BinaryCachitoTask(params)
return task.run()
return task.run(init_build_dirs=True)


def binary_container_prebuild(task_args: dict):
Expand All @@ -72,7 +72,7 @@ def binary_container_prebuild(task_args: dict):
"""
params = TaskParams.from_cli_args(task_args)
task = BinaryPreBuildTask(params)
return task.run()
return task.run(init_build_dirs=True)


def binary_container_build(task_args: dict):
Expand Down

0 comments on commit 2616fdc

Please sign in to comment.