From 31a72234340a44f91e32a02cf79c3aebeed8cdf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B2=81=E6=A0=91=E4=BA=BA?= Date: Sat, 16 Sep 2023 16:12:30 +0100 Subject: [PATCH] fix: typo in linux adb dump command --- src/components/AndroidADBPullInstruction/adb_dump.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AndroidADBPullInstruction/adb_dump.sh b/src/components/AndroidADBPullInstruction/adb_dump.sh index 38947c8..d62f447 100644 --- a/src/components/AndroidADBPullInstruction/adb_dump.sh +++ b/src/components/AndroidADBPullInstruction/adb_dump.sh @@ -1,2 +1,2 @@ -sh adb shell su -c "cat '{{ dir }}/{{ file }}' | gzip | base64" \ - | base64 -d | gzip -d '{{ file }}' +adb shell su -c "cat '{{ dir }}/{{ file }}' | gzip | base64" \ + | base64 -d | gzip -d >'{{ file }}'