b5c347a1c14733177577aaf3a8bce392 413 B

12345678910
  1. #!/bin/sh
  2. diff "${PODS_PODFILE_DIR_PATH}/Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null
  3. if [ $? != 0 ] ; then
  4. # print error to STDERR
  5. echo "error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation." >&2
  6. exit 1
  7. fi
  8. # This output is used by Xcode 'outputs' to avoid re-running this script phase.
  9. echo "SUCCESS" > "${SCRIPT_OUTPUT_FILE_0}"