iosswiftiphonecocoapodspodspec

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.


Solution

  • 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.