We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88a07ba commit 8a0df96Copy full SHA for 8a0df96
unblob/processing.py
@@ -469,7 +469,7 @@ def __init__(
469
def process(self):
470
logger.debug("Processing file", path=self.task.path, size=self.size)
471
472
- if not self.config.skip_extraction and self.carve_dir.exists():
+ if self.carve_dir.exists() and not self.config.skip_extraction:
473
# Extraction directory is not supposed to exist, it is usually a simple mistake of running
474
# unblob again without cleaning up or using --force.
475
# It would cause problems continuing, as it would mix up original and extracted files,
0 commit comments