From 4abf8e6ef81e78469148b156ae2d2da70ace627a Mon Sep 17 00:00:00 2001 From: Dave Borowitz Date: Fri, 2 Jan 2015 11:39:04 -0800 Subject: Save cookies back to jar when fetching clone.bundle Change-Id: I3ef71b5e7f8ee1cda66057e46ae234866c7258c4 --- project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'project.py') diff --git a/project.py b/project.py index ce27e7ab..6ed9f9d4 100644 --- a/project.py +++ b/project.py @@ -1949,7 +1949,7 @@ class Project(object): cmd += ['--proxy', os.environ['http_proxy']] with self._GetBundleCookieFile(srcUrl) as cookiefile: if cookiefile: - cmd += ['--cookie', cookiefile] + cmd += ['--cookie', cookiefile, '--cookie-jar', cookiefile] if srcUrl.startswith('persistent-'): srcUrl = srcUrl[len('persistent-'):] cmd += [srcUrl] -- cgit v1.2.3-54-g00ecf