Merge pull request #181 from GraemeF/patch-1

Fixed typo
This commit is contained in:
Budi Utomo
2019-07-24 12:03:05 +02:00
committed by GitHub
+1 -1
View File
@@ -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