Skip to content

Commit

Permalink
Update cleapp.py
Browse files Browse the repository at this point in the history
Add tgz to extract type/.
  • Loading branch information
markmckinnon committed May 7, 2021
1 parent 842561f commit 24529eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cleapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def crunch_artifacts(search_list, extracttype, input_path, out_params, ratio, wr
try:
if extracttype == 'fs':
seeker = FileSeekerDir(input_path)
elif extracttype in ('tar', 'gz'):
elif extracttype in ('tar', 'gz', 'tgz'):
seeker = FileSeekerTar(input_path, out_params.temp_folder)
elif extracttype == 'zip':
seeker = FileSeekerZip(input_path, out_params.temp_folder)
Expand Down

0 comments on commit 24529eb

Please sign in to comment.