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
Rewrite the plugin to monkey-patch cocoapods installer methods (#3)
* Add specs
* Rewrite the plugin to monkey-patch cocoapods installer methods
This allows us to avoid needing to re-write the user project on every single pod install, which will save multiple seconds
* Fix rubocop violations
* Manually install bundler on Travis
echo "error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation." $@ >&2
51
+
exit 1
52
+
}
53
+
54
+
diff -q "${PODS_PODFILE_DIR_PATH}/Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null || fail "The manifest in the sandbox differs from your lockfile."
55
+
56
+
if [ -f "${PODS_ROOT}/Podfile.sha1" ]; then
57
+
(cd "${PODS_PODFILE_DIR_PATH}" && shasum --algorithm 1 --status --check "${PODS_ROOT}/Podfile.sha1") || fail "Your Podfile has been changed since the last time you ran 'pod install'."
58
+
fi
59
+
60
+
# This output is used by Xcode 'outputs' to avoid re-running this script phase.
0 commit comments