英文:
I am getting " WARN | url: (homepage) The URL is not reachable." on iOS pod lib lint command?
问题
警告 | URL:URL(https://github.com/username/repo_name)无法访问。我无法弄清楚如何修复它。
英文:
When I am adding my private repo name in homepage url in .podspec file I am getting following warning,
WARN | url: The URL (https://github.com/username/repo_name) is not reachable.
I can't figure out how to fix it.
答案1
得分: 9
尝试:
pod lib lint --private
以跳过仅适用于公共库的检查。
> 注意:您仍然可以看到警告,但只要修复了所有公共警告,您的验证就会通过。
英文:
Try:
pod lib lint --private
to skips checks that apply only to public pods.
> NOTE: You will still be able to see the warnings but your validation will pass once all public warnings have been fixed.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论