in plugin/src/py/android_screenshot_tests/simple_puller.py [0:0]
def _tar(self, src):
subprocess.check_call(
[get_adb()]
+ self._adb_args
+ [
"shell",
"tar",
"-zcvf",
SimplePuller._get_tar_name(src),
"-C",
src,
".",
],
stderr=subprocess.STDOUT,
)