我在
Xcode中有脚本,它在归档操作结束时自动运行.它正在签署并向TestFlight服务提交构建.问题是上传需要花费很多时间,我看不到任何进展.
原文链接:https://www.f2er.com/bash/385023.htmlnotify () { /usr/bin/osascript -e "display notification \"$1\" with title \"Xcode\"" } notify "Uploading to TestFlight"
cURL上传在这里完成:
/usr/bin/curl "http://testflightapp.com/api/builds.json" \ -F file=@"/tmp/${PRODUCT_NAME}.ipa" \ -F dsym=@"/tmp/${PRODUCT_NAME}.dSYM.zip" \ -F api_token="${API_TOKEN}" \ -F team_token="${TEAM_TOKEN}" \ -F notes="Build uploaded automatically from Xcode."
如果我能看到有关上传过程的10%,20等等的类似信息,我会很高兴.