From d79bae7de0287d6da5a09c423671315301b8f005 Mon Sep 17 00:00:00 2001 From: Harshit Raj Date: Wed, 5 Oct 2022 02:45:58 +0530 Subject: [PATCH] Update uninstall.sh Fixed a typo mistake in uninstall.h line : 35 Prior to commit : echo "uninstlling $PRO" after commit : echo "uninstalling $PRO" Signed-off-by: Harshit Raj --- android/script/uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/script/uninstall.sh b/android/script/uninstall.sh index f8c8d4e00d..0f5f0b2654 100755 --- a/android/script/uninstall.sh +++ b/android/script/uninstall.sh @@ -32,6 +32,6 @@ fi if [[ $package == *p* ]] then - echo "uninstlling $PRO" + echo "uninstalling $PRO" adb $ID uninstall $PRO fi