Created
August 29, 2017 02:22
-
-
Save munho/e296906ec42b71e673fb6bbee6b86509 to your computer and use it in GitHub Desktop.
for $dirs install all pods.sh
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
| dirs=$(find . -name Podfile -print0 | xargs -0 -n1 dirname | sort --unique) | |
| top=$(pwd) | |
| for dir in $dirs | |
| do | |
| cd "$dir" | |
| pod install | |
| cd "$top" | |
| done | |
| # install_all_pods.sh | |
| # https://github.com/CosmicMind/Samples.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment