bugfix: agrego http:// como protocolo soportado para pipelines
This commit is contained in:
@@ -17,7 +17,7 @@ class RemoteAPI(ABC):
|
||||
|
||||
if url.startswith("git@"):
|
||||
url_type = "ssh"
|
||||
elif url.startswith("https://"):
|
||||
elif url.startswith("http://") or url.startswith("https://"):
|
||||
url_type = "https"
|
||||
else:
|
||||
raise invalid_url_error
|
||||
|
||||
Reference in New Issue
Block a user