Skip to content

Instantly share code, notes, and snippets.

@lexrus
Created May 28, 2014 10:34
Show Gist options
  • Save lexrus/c4d1829ae0d00fb505c1 to your computer and use it in GitHub Desktop.
Save lexrus/c4d1829ae0d00fb505c1 to your computer and use it in GitHub Desktop.
Force your little brother to upgrade CocoaPods.
NEW_VER="0.33.1"
POD_VER=`pod --version 2>/dev/null`|| POD_VER=`~/.rbenv/shims/pod --version 2>/dev/null`
if [[ "$POD_VER" != *$NEW_VER ]]; then
echo "error: WTF! You MUST upgrade cocoapods!!!"
exit 1
fi
@lexrus
Copy link
Author

lexrus commented May 28, 2014

How to use it and what does it looks like? Check out the screenshot:

screen shot 2014-05-28 at 6 35 12 pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment