Skip to content

Commit

Permalink
use images_packer as tmp prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodong-Yang committed Dec 25, 2023
1 parent b3f0f3e commit d5416d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/images_packer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def main_build_offline_ota_image_bundle(args: argparse.Namespace):
sys.exit(errno.EINVAL)

# ------ build image ------ #
with tempfile.TemporaryDirectory(prefix="offline_OTA_image_builder") as workdir:
with tempfile.TemporaryDirectory(prefix="images_packer") as workdir:
build(
image_metas,
image_files,
Expand Down Expand Up @@ -152,7 +152,7 @@ def main_build_external_cache_src(args: argparse.Namespace):
)

# ------ build image ------ #
with tempfile.TemporaryDirectory(prefix="offline_OTA_image_builder") as workdir:
with tempfile.TemporaryDirectory(prefix="images_packer") as workdir:
build(
image_metas,
image_files,
Expand Down

0 comments on commit d5416d0

Please sign in to comment.