Last active
August 25, 2020 00:55
-
-
Save mmdock/347b38ce07faab8efa3d16380a7891c4 to your computer and use it in GitHub Desktop.
When Cocoapods is messing up, start clean
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm -rf Pods/ | |
pod cache clean --all | |
rm -rf "${HOME}/Library/Caches/CocoaPods" | |
rm -rf ~/Library/Developer/Xcode/DerivedData/* | |
pod install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment