From aa8e6f70a805707c7fbf124cf559cf3c411de01c Mon Sep 17 00:00:00 2001 From: Rob McMullen Date: Tue, 2 May 2017 20:02:54 -0700 Subject: [PATCH] Fixed the --all option for the extract command --- atrcopy/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/atrcopy/__init__.py b/atrcopy/__init__.py index 7850e11..27a55ec 100644 --- a/atrcopy/__init__.py +++ b/atrcopy/__init__.py @@ -79,6 +79,8 @@ def find_diskimage(filename): def extract_files(image, files): + if options.all: + files = image.files for name in files: try: dirent = image.find_dirent(name)