From 5d731d066f64a384b6a6805b945c35d2a337904c Mon Sep 17 00:00:00 2001 From: Jixun Wu 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 }}'