From c8873fc43a519a99c7aa62b8f2639dfd590ded3c Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Wed, 15 Sep 2021 03:24:49 -0700 Subject: [PATCH] Fixing a minor typo in the verify-android-sdk script. Summary: Just fixing a minor typo Changelog: [Internal] - Fixing a minor typo in the verify-android-sdk script Reviewed By: sshic Differential Revision: D30933339 fbshipit-source-id: b9191089b67dc05813609702dababc3e36a5e6f8 --- scripts/validate-android-sdk.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/validate-android-sdk.sh b/scripts/validate-android-sdk.sh index eddf3a2f852..06661779fef 100755 --- a/scripts/validate-android-sdk.sh +++ b/scripts/validate-android-sdk.sh @@ -28,7 +28,7 @@ fi if [ ! -e "$ANDROID_HOME/tools/emulator" ]; then echo "Error: could not find an emulator at \$ANDROID_HOME/tools/emulator." echo "Specifically, $ANDROID_HOME/tools/emulator does not exist." - echo "This indicates something is borked with your Android SDK install." + echo "This indicates something is broken with your Android SDK install." echo "One possibility is that you have \$ANDROID_HOME set to the wrong value." echo "If that seems correct, you might want to try reinstalling the Android SDK." echo "See https://reactnative.dev/docs/getting-started.html for instructions." @@ -46,7 +46,7 @@ fi if [ -z `which adb` ]; then echo "Error: could not find 'adb'. Specifically, 'which adb' was empty." - echo "This indicates something is borked with your Android SDK install." + echo "This indicates something is broken with your Android SDK install." echo "The most likely problem is that you are not adding \$ANDROID_HOME/platform-tools to your \$PATH." echo "If all else fails, try reinstalling the Android SDK." echo "See https://reactnative.dev/docs/getting-started.html for instructions."