You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,7 +34,7 @@ if [[ "$PODFILE_SHA" == "$PODFILE_LOCK_SHA" ]]; then
29
34
success "Podfile checksum verified!"
30
35
else
31
36
error "Podfile.lock checksum mismatch. Did you forget to run \`npx pod-install\`?"
32
-
EXIT_CODE=1
37
+
cleanupAndExit 1
33
38
fi
34
39
35
40
info "Ensuring correct version of cocoapods is used..."
@@ -45,45 +50,46 @@ if [[ "$POD_VERSION_FROM_GEMFILE" == "$POD_VERSION_FROM_PODFILE_LOCK" ]]; then
45
50
success "Cocoapods version from Podfile.lock matches cocoapods version from Gemfile"
46
51
else
47
52
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."
48
-
EXIT_CODE=1
53
+
cleanupAndExit 1
49
54
fi
50
55
51
56
info "Comparing Podfile.lock with node packages..."
52
57
53
58
# Retrieve a list of podspec directories as listed in the Podfile.lock
0 commit comments