Commit f1d73ebb authored by szager@chromium.org's avatar szager@chromium.org

Fix url parameter to DefaultIndexPackConfig().

BUG=349576

Review URL: https://codereview.chromium.org/245303002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@265012 0039d316-1c4b-4281-b951-d872f2087c98
parent 3fd55f95
...@@ -759,7 +759,7 @@ class GitWrapper(SCMWrapper): ...@@ -759,7 +759,7 @@ class GitWrapper(SCMWrapper):
self.Print('') self.Print('')
template_path = os.path.join( template_path = os.path.join(
os.path.dirname(THIS_FILE_PATH), 'git-templates') os.path.dirname(THIS_FILE_PATH), 'git-templates')
cfg = gclient_utils.DefaultIndexPackConfig(self.url) cfg = gclient_utils.DefaultIndexPackConfig(url)
clone_cmd = cfg + [ clone_cmd = cfg + [
'clone', '--no-checkout', '--progress', '--template=%s' % template_path] 'clone', '--no-checkout', '--progress', '--template=%s' % template_path]
if self.cache_dir: if self.cache_dir:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment