18

我正在尝试在我用 Xcode 5 开发的 iOS 项目中使用 Mogenerator。我已经用 brew 安装了 Mogenerator:

brew install mogenerator

然后链接:

brew link mogenerator

之后,我可以从命令行访问此工具。

接下来,我尝试在构建阶段(shell /bin/sh)中再添加一个步骤(脚本执行):

mogenerator --model "${PROJECT_DIR}/MyProject/Model.xcdatamodeld/Model.xcdatamodel" --output-dir "${PROJECT_DIR}/MyProject" --template-var arc=true

实际上我得到错误:

line 2: mogenerator: command not found
Command /bin/sh failed with exit code 127

你有什么建议可以解决这个问题吗?

4

1 回答 1

27

如果 /usr/local/bin 不在 Xcode 使用的搜索路径中,您可以使用绝对(完整)路径调用 mogenerator:

/usr/local/bin/mogenerator --model ...
于 2013-10-08T13:41:45.597 回答