Do not fetch or add keys for http based git urls

This commit is contained in:
James Tanner 2014-01-11 15:15:23 -05:00
parent eeee1e1c5a
commit 3719f3f496

View file

@ -18,7 +18,7 @@ def get_fqdn(repo_url):
""" chop the hostname out of a giturl """
result = None
if "@" in repo_url:
if "@" in repo_url and not repo_url.startswith("http"):
repo_url = repo_url.split("@", 1)[1]
if ":" in repo_url:
repo_url = repo_url.split(":")[0]