我正在尝试使用PlistBuddy更新Info.plist 中的CFBundleName和CFBundleDisplayName
/usr/libexec/PlistBuddy -c "Set : CFBundleName test" info.plist
/usr/libexec/PlistBuddy -c "Set : CFBundleDisplayName test" info.plist
当文件在 Xcode 项目之外时,它可以正常工作但是当文件在项目中时,它会抛出“ Set:Cannot Perform Set On Containers ”
为什么会发生,以及如何在不将文件移出项目的情况下解决这个问题。