From 5718668b4dc613a5ce9c18c0edcc17b391a12086 Mon Sep 17 00:00:00 2001 From: Brent Vatne Date: Mon, 26 Jun 2023 15:32:29 -0700 Subject: [PATCH] [eas-expo-go] Fix typo --- apps/eas-expo-go/scripts/eas-build-on-success.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/eas-expo-go/scripts/eas-build-on-success.sh b/apps/eas-expo-go/scripts/eas-build-on-success.sh index 0e1405de251b29..1202c21c63ed78 100755 --- a/apps/eas-expo-go/scripts/eas-build-on-success.sh +++ b/apps/eas-expo-go/scripts/eas-build-on-success.sh @@ -39,9 +39,9 @@ if [[ "$EAS_BUILD_PROFILE" == "release-client" ]]; then TITLE="" if [[ "$EAS_BUILD_PLATFORM" = "android" ]]; then - TITLE="Successfull Expo Go release build. Submitting build to the Play Store." + TITLE="Successful Expo Go release build. Submitting build to the Play Store." elif [[ "$EAS_BUILD_PLATFORM" = "ios" ]]; then - TITLE="Successfull Expo Go release build. Submitting build to the TestFlight." + TITLE="Successful Expo Go release build. Submitting build to the TestFlight." fi MESSAGE="Release triggered by: $EAS_BUILD_USERNAME\\nCommit author: $COMMIT_AUTHOR\\n$EAS_BUILD_MESSAGE_PART\\n$GITHUB_MESSAGE_PART" @@ -61,9 +61,9 @@ if [[ "$EAS_BUILD_PROFILE" == "publish-client" ]]; then source $ROOT_DIR/secrets/expotools.env if [[ "$EAS_BUILD_PLATFORM" == "android" ]]; then et eas android-apk-publish - notify_slack "Successfull Expo Go Android APK build. Published to S3 and updated staging versions endpoint" "$MESSAGE" + notify_slack "Successful Expo Go Android APK build. Published to S3 and updated staging versions endpoint" "$MESSAGE" elif [[ "$EAS_BUILD_PLATFORM" == "ios" ]]; then et eas ios-simulator-publish - notify_slack "Successfull Expo Go iOS simulator build. Published to S3 and updated staging versions endpoint" "$MESSAGE" + notify_slack "Successful Expo Go iOS simulator build. Published to S3 and updated staging versions endpoint" "$MESSAGE" fi fi