Skip to content

Commit

Permalink
Merge pull request #158 from andrewzirkel/2.0.0-dev
Browse files Browse the repository at this point in the history
fix unpack recursion
  • Loading branch information
homebysix authored Oct 31, 2020
2 parents 2767a34 + f54a37a commit 54b1e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/recipe_robot_lib/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ def inspect_disk_image(input_path, args, facts):
cached_app_path = os.path.join(CACHE_DIR, "unpacked", this_file)
if not os.path.exists(cached_app_path):
try:
shutil.copytree(attached_app_path, cached_app_path)
shutil.copytree(attached_app_path, cached_app_path,True)
except shutil.Error:
pass
# Unmount attached volume when done.
Expand Down

0 comments on commit 54b1e2a

Please sign in to comment.