From 4d64ece2f9167038f59248db8235be9add1d1c31 Mon Sep 17 00:00:00 2001 From: Graeme Foster Date: Tue, 23 Jul 2019 14:17:52 +0000 Subject: [PATCH] Fixed typo --- src/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.sh b/src/utils.sh index 0169fbc..6fba21d 100755 --- a/src/utils.sh +++ b/src/utils.sh @@ -17,7 +17,7 @@ function wait_emulator_to_be_ready () { function change_language_if_needed() { if [ ! -z "${LANGUAGE// }" ] && [ ! -z "${COUNTRY// }" ]; then wait_emulator_to_be_ready - echo "Languge will be changed to ${LANGUAGE}-${COUNTRY}" + echo "Language will be changed to ${LANGUAGE}-${COUNTRY}" adb root && adb shell "setprop persist.sys.language $LANGUAGE; setprop persist.sys.country $COUNTRY; stop; start" && adb unroot echo "Language is changed!" fi