From de1ed19dc26093c94455e83de7389833ae804c8f Mon Sep 17 00:00:00 2001 From: Ryan Tseng Date: Tue, 7 Mar 2017 18:43:43 -0800 Subject: [PATCH] cit.py: Use infra.git's cit branch instead of the deployed branch So that we can roll the cit.py pin without breaking other services. BUG= Change-Id: I5992d753d8ddf23c29f1ef6c09866a86c7f7c2ae Reviewed-on: https://chromium-review.googlesource.com/450760 Reviewed-by: Daniel Jacques Commit-Queue: Ryan Tseng --- cit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cit.py b/cit.py index f08ddddc5..46c5ccef2 100755 --- a/cit.py +++ b/cit.py @@ -146,7 +146,7 @@ def run(args): def main(): parser = argparse.ArgumentParser("Chrome Infrastructure CLI.") - parser.add_argument('-b', '--infra-branch', default='deployed', + parser.add_argument('-b', '--infra-branch', default='cit', help="The name of the 'infra' branch to use (default is %(default)s).") parser.add_argument('args', nargs=argparse.REMAINDER)