Skip to content

Commit

Permalink
Change lzma to 7zip
Browse files Browse the repository at this point in the history
  • Loading branch information
domwhewell-sage committed Dec 19, 2024
1 parent 7db38fd commit 892663d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbot/modules/internal/unarchive.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async def setup(self):
"xz": ["tar", "--overwrite", "-xvJf", "{filename}", "-C", "{extract_dir}/"],
"7z": ["7z", "x", '-p""', "-aoa", "{filename}", "-o{extract_dir}/"],
"rar": ["unrar", "x", "-o+", "-p-", "{filename}", "{extract_dir}/"],
"lzma": ["tar", "--overwrite", "--lzma", "-xvf", "{filename}", "-C", "{extract_dir}/"],
"lzma": ["7z", "x", '-p""', "-aoa", "{filename}", "-o{extract_dir}/"],
"tar": ["tar", "--overwrite", "-xvf", "{filename}", "-C", "{extract_dir}/"],
"gzip": ["tar", "--overwrite", "-xvzf", "{filename}", "-C", "{extract_dir}/"],
}
Expand Down

0 comments on commit 892663d

Please sign in to comment.