我正在尝试通过OS X服务器使用CI bot设置Cocoapods。我有以下预集成触发器:
export LANG=en_US.UTF-8
export PATH="/usr/local/bin:$PATH"
cd "$XCS_SOURCE_DIR/myproject"
if [ -e "Pods" ]
then
pod update
else
pod install
fi
然而,我拥有的一些pod是私人仓库,我自己开发并在机器人集成运行的输出日志中,我得到:
Update all pods
Updating local specs repositories
Cloning spec repo `my_organization` from `https://github.com/my_organization/CocoapodsPrivateSpecs.git`
[!] Unable to add a source with url `https://github.com/my_organization/CocoapodsPrivateSpecs.git` named `my_organization`.
You can try adding it manually in `~/.cocoapods/repos` or via `pod repo add`.
我确认我的机器上实际上有一个私人仓库(我能够将一些版本推送到github仓库)。让我感到困惑的是,脚本试图添加名为“my_organization”的仓库,但在我的机器上我将其命名为其他东西(不确定是否重要)。