Skip to content

Commit

Permalink
Quoting merging input path
Browse files Browse the repository at this point in the history
  • Loading branch information
alterakey committed Sep 10, 2024
1 parent f2b4f6a commit c9568c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion trueseeing/core/android/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import lxml.etree as ET
import os
import re
import shlex
from functools import cache

from pubsub import pub
Expand Down Expand Up @@ -392,7 +393,7 @@ async def _analyze(self, level: int) -> None:
with toolchains() as tc:
async for l in invoke_streaming('java -jar {apkeditor} m -i {target} -o {outfile}'.format(
apkeditor=tc['apkeditor'],
target=self.target,
target=shlex.quote(self.target),
outfile=outfile,
)):
ui.info(l.decode())
Expand Down

0 comments on commit c9568c8

Please sign in to comment.