From 6718164717cbaf7391ed1afe2d818ed4dd4889a0 Mon Sep 17 00:00:00 2001 From: Mandeep Singh Baines Date: Wed, 11 Aug 2010 10:29:56 -0700 Subject: [PATCH] cbuildbot: use correct port Ugh, it worked on my machine because of my .ssh/config but need to explicitly specify port for it to work on buildbot. TBR=sosa BUG=5532 TEST=This change was in the previous location of cbuilbot.py and working correctly. Change-Id: Id53a76bcb5d43c37ac725267864048d833f5a6ee Review URL: http://codereview.chromium.org/3144005 --- bin/cbuildbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cbuildbot.py b/bin/cbuildbot.py index 6eabcb954a..046ba2c11d 100755 --- a/bin/cbuildbot.py +++ b/bin/cbuildbot.py @@ -54,7 +54,7 @@ def _FullCheckout(buildroot): cwd=buildroot, input='\n\ny\n') RunCommand(['repo', 'sync'], cwd=buildroot) RunCommand(['repo', 'forall', '-c', 'git', 'config', - 'url.ssh://gitrw.chromium.org.pushinsteadof', + 'url.ssh://git@gitrw.chromium.org:9222.pushinsteadof', 'http://src.chromium.org/git'], cwd=buildroot) def _IncrementalCheckout(buildroot):