From a63046b877334125b9226d3bb9b30865b83002c3 Mon Sep 17 00:00:00 2001 From: Mikhail Yaroshevskiy Date: Mon, 11 Sep 2023 10:54:08 +0200 Subject: [PATCH] Update fix typo in verifyPodfile.sh --- .github/scripts/verifyPodfile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/verifyPodfile.sh b/.github/scripts/verifyPodfile.sh index 82906f2564b4..ec2709a25786 100755 --- a/.github/scripts/verifyPodfile.sh +++ b/.github/scripts/verifyPodfile.sh @@ -44,7 +44,7 @@ info "Pod version from Podfile.lock: $POD_VERSION_FROM_PODFILE_LOCK" if [[ "$POD_VERSION_FROM_GEMFILE" == "$POD_VERSION_FROM_PODFILE_LOCK" ]]; then success "Cocoapods version from Podfile.lock matches cocoapods version from Gemfile" else - error "Cocoapods version from Podfile.lock does not match cocoapods version from Gemfile. Please use \`npm pod-install\` or \`bundle exec pod install\` instead of \`pod install\` to install pods." + error "Cocoapods version from Podfile.lock does not match cocoapods version from Gemfile. Please use \`npm run pod-install\` or \`bundle exec pod install\` instead of \`pod install\` to install pods." EXIT_CODE=1 fi