Skip to content

Instantly share code, notes, and snippets.

View mikeest1972's full-sized avatar

Miguel Cota mikeest1972

View GitHub Profile
@mikeest1972
mikeest1972 / podforceupdate.sh
Last active April 8, 2022 22:46 — forked from mbinna/podforceupdate.sh
Clear CocoaPods cache, re-download and re-install all pods
#!/usr/bin/env bash
rm -rf "${HOME}/Library/Caches/CocoaPods"
rm -rf "`pwd`/Pods/"
# for non M1
# pod update
# for M1 macs
arch -x86_64 pod update