cit.py fix

gclient should be checking out origin/deployed, not deployed.
--revision deployed is local, origin/deployed actually causes it to fetch

BUG=

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@296055 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
hinoka@chromium.org
2015-07-17 22:57:22 +00:00
parent bdc4728fb1
commit d61f1556bb

2
cit.py
View File

@@ -61,7 +61,7 @@ def ensure_infra():
cwd=TARGET_DIR,
stdout=subprocess.PIPE)
subprocess.check_call(
[sys.executable, GCLIENT, 'sync', '--revision', 'deployed'],
[sys.executable, GCLIENT, 'sync', '--revision', 'origin/deployed'],
cwd=TARGET_DIR,
stdout=subprocess.PIPE)