Skip to content

Instantly share code, notes, and snippets.

@ngs
Created May 9, 2018 03:30
Show Gist options
  • Select an option

  • Save ngs/2ecdf6b40606a205740a5584214f86f5 to your computer and use it in GitHub Desktop.

Select an option

Save ngs/2ecdf6b40606a205740a5584214f86f5 to your computer and use it in GitHub Desktop.
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