Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
fixup frida-tools#75 47d020ad1e51a1a5037c630e2de7136b867e86aa.
Browse files Browse the repository at this point in the history
  • Loading branch information
hluwa committed Feb 14, 2022
1 parent 7d97ebf commit 3c69b4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions frida_dexdump/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ def _usage(self):
return "Usage see: frida-dexdump -h"

def _add_options(self, parser):
# fixup frida-tools#75 47d020ad1e51a1a5037c630e2de7136b867e86aa
if not hasattr(parser, "add_argument") and hasattr(parser, "add_option"):
setattr(parser, "add_argument", getattr(parser, "add_option"))
parser.add_argument("-o", "--output", help="Output folder path, default is './<appname>/'.",
type=str, action='store')
parser.add_argument("-d", "--deep-search", help="Enable deep search mode.",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="frida-dexdump",
version="2.0.0",
version="2.0.1",
description="Useful and fast android unpacker",
author="hluwa",
author_email="[email protected]",
Expand Down

0 comments on commit 3c69b4b

Please sign in to comment.