Skip to content

Commit

Permalink
fix small bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuzcx committed Jan 31, 2022
1 parent 52e383b commit 5d73c72
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions decomp_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def decomp(fn_from,pn_to,pn_apktool,pn_dex2jar):
if pn_to == fn_from:
pn_to = os.path.join(pn_from,f'{name}_{suf}')
if suf == 'apk':
decomp_apk(fn_from,pn_to,pn_apktool)
decomp_apk(fn_from,pn_to,pn_apktool,pn_dex2jar)
return
if suf == 'dex':
decomp_dex(fn_from,pn_dex2jar)
Expand Down Expand Up @@ -118,4 +118,3 @@ def main(apk_from,path_to,pn_apktool,pn_dex2jar):
for fn in t:
if fn is None:continue
decomp(fn,fn,pn_apktool,pn_dex2jar)

0 comments on commit 5d73c72

Please sign in to comment.