Created
May 9, 2018 03:30
-
-
Save ngs/2ecdf6b40606a205740a5584214f86f5 to your computer and use it in GitHub Desktop.
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
| FILES=$(find Carthage/Build/iOS/*.framework -name Info.plist | xargs grep -l '<string>com.firebase.Firebase') | |
| for F in $FILES; do | |
| NAME=$(/usr/libexec/PlistBuddy -c "Print :CFBundleName" "$F") | |
| plutil -replace CFBundleIdentifier -string "com.firebase.Firebase.$NAME" $F | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment