We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31f5a84 commit b7abaa6Copy full SHA for b7abaa6
android_unpinner/vendor/platform_tools/__init__.py
@@ -23,7 +23,7 @@ def adb(cmd: str) -> subprocess.CompletedProcess[str]:
23
full_cmd = f"{base} {cmd}"
24
try:
25
proc = subprocess.run(
26
- full_cmd, shell=False, check=True, capture_output=True, text=True
+ full_cmd, shell=True, check=True, capture_output=True, text=True
27
)
28
except subprocess.CalledProcessError as e:
29
logging.debug(f"cmd='{full_cmd}'\n" f"{e.stdout=}\n" f"{e.stderr=}")
0 commit comments