Xcode 5.1.1 shell脚本调用错误

时间:2014-06-19 08:47:03

标签: ios xcode

当我尝试运行应用程序时出现错误:打印:

  

条目,“:CFBundleShortVersionString”,不存在解析错误:   Set命令/ bin / sh所需的未闭合引号值失败   退出代码1

这是我应用中该部分的编码

#!/bin/sh
VERSION=`/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' Translator/Translator-Info.plist`
/usr/libexec/PlistBuddy -c "Set :PreferenceSpecifiers:0:DefaultValue $VERSION" Translator/Settings.bundle/Root.plist

我不知道出了什么问题!!

1 个答案:

答案 0 :(得分:1)

这意味着在你的info.plist文件中,"捆绑版本字符串,简短"键/值不存在。将它添加到info.plist并重新编译。