From 04688ffe03053f54613063c748cdcbea31705d46 Mon Sep 17 00:00:00 2001 From: Eric House Date: Mon, 30 Mar 2020 12:04:42 -0700 Subject: [PATCH] fix uninstall script --- xwords4/android/scripts/adb-uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/android/scripts/adb-uninstall.sh b/xwords4/android/scripts/adb-uninstall.sh index 66f4b2cfb..846f6cd9e 100755 --- a/xwords4/android/scripts/adb-uninstall.sh +++ b/xwords4/android/scripts/adb-uninstall.sh @@ -23,7 +23,7 @@ usage() { getPackage() { APK=$1 - PACK=$($AAPT dumb badging $APK | grep '^package: ' | sed "s,^.*name='\([^']*\)'.*\$,\1,") + PACK=$($AAPT dumb badging $APK | grep '^package: ' | sed "s,^.* name='\([^']*\)'.*\$,\1,") echo $PACK }