Created
October 31, 2022 12:20
-
-
Save shady1440/f1a8d85b90c1ffad6876a8c13bc7e43a to your computer and use it in GitHub Desktop.
Remove Cocoapods from gem
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 | |
for i in $( gem list --local --no-version | grep cocoapods ); | |
do | |
gem uninstall $i; | |
done | |
rm -rf ~/.cocoapods/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment