Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am getting " WARN | url: (homepage) The URL is not reachable." on iOS pod lib lint command?

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.

like image 505
prajakta patil Avatar asked Jan 26 '23 11:01

prajakta patil


1 Answers

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.

like image 173
Yonat Avatar answered Jan 29 '23 08:01

Yonat