commit | 84f7e137c20b7500a6a5c719c39e9166c6e40e85 | [log] [tgz] |
---|---|---|
author | Conley Owens <cco3@android.com> | Thu Jan 17 20:02:03 2013 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Jan 17 20:02:03 2013 +0000 |
tree | ae4ebf317539cbd519ebe5ea3e055f0127510097 | |
parent | 26e2475a0fe090f5bd2c0a0a040f21cc71aac095 [diff] | |
parent | ed68d0e8529f059a5d989ebd505bfb53e869ec2f [diff] |
Merge "Check for a cookie file when fetching clone.bundle."
diff --git a/project.py b/project.py index 46b7611..ba7898e 100644 --- a/project.py +++ b/project.py
@@ -1746,6 +1746,9 @@ os.remove(tmpPath) if 'http_proxy' in os.environ and 'darwin' == sys.platform: cmd += ['--proxy', os.environ['http_proxy']] + cookiefile = GitConfig.ForUser().GetString('http.cookiefile') + if cookiefile: + cmd += ['--cookie', cookiefile] cmd += [srcUrl] if IsTrace():