Created
April 18, 2017 22:51
-
-
Save munho/a1d8ad6e2462260531abaa3da5e42717 to your computer and use it in GitHub Desktop.
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 | |
| # https://github.com/CosmicMind/Samples.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment