【发布时间】:2016-12-14 17:09:56
【问题描述】:
我用
重新安装了xcprojbrew uninstall xcproj
brew install xcproj
这安装了当前版本 (0.2.1),但我需要版本 0.1(与我当前项目的兼容性问题)。我尝试了Homebrew install specific version of formula? 中描述的方法,但找不到如何安装早期版本的 xcproj。如何安装 0.1 版?
【问题讨论】:
我用
重新安装了xcprojbrew uninstall xcproj
brew install xcproj
这安装了当前版本 (0.2.1),但我需要版本 0.1(与我当前项目的兼容性问题)。我尝试了Homebrew install specific version of formula? 中描述的方法,但找不到如何安装早期版本的 xcproj。如何安装 0.1 版?
【问题讨论】:
我最终通过手动构建和安装 xcproj 解决了这个问题
brew uninstall xcproj
git clone https://github.com/0xced/xcproj.git
git checkout 0.1.2
xcodebuild install DSTROOT=/
【讨论】: