Index: gclient.py |
diff --git a/gclient.py b/gclient.py |
index 5c5c5ca5f57f4ae3cb692e8fa2c7f51167fedd43..9cf4de5e45a7cc8982af7d8ff6d22c2110f241ad 100755 |
--- a/gclient.py |
+++ b/gclient.py |
@@ -400,6 +400,8 @@ class Dependency(gclient_utils.WorkItem, DependencySettings): |
Manages From() keyword accordingly. Do not touch self.parsed_url nor |
self.url because it may called with other urls due to From().""" |
assert self.parsed_url == None or not self.should_process, self.parsed_url |
+ if url.startswith('git@'): |
bradn
2014/04/10 22:19:27
Move this down to where url is known to be a strin
Sheridan Rawlins
2014/04/11 01:05:46
Ah, too true - https://www.kernel.org/pub/software
|
+ return url |
parsed_url = self.get_custom_deps(self.name, url) |
if parsed_url != url: |
logging.info( |