From 197399a8acc768c60f2c7bce8726bb977929de81 Mon Sep 17 00:00:00 2001 From: Thiago Perrotta Date: Tue, 7 Nov 2023 21:06:27 +0000 Subject: [PATCH] depot_tools: add a `--dry-run` alias to `--cq-dry-run` It is easier to remember. Bug: none Change-Id: I075fe57521c9743901f51bd1ed3476145553dc48 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5010037 Commit-Queue: Aravind Vasudevan Auto-Submit: Thiago Perrotta Reviewed-by: Aravind Vasudevan --- git_cl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git_cl.py b/git_cl.py index afdfb4a8a8..0d317c28cf 100755 --- a/git_cl.py +++ b/git_cl.py @@ -4923,8 +4923,10 @@ def CMDupload(parser, args): help='tell the CQ to commit this patchset; ' 'implies --send-mail') parser.add_option('-d', + '--dry-run', '--cq-dry-run', action='store_true', + dest='cq_dry_run', default=False, help='Send the patchset to do a CQ dry run right after ' 'upload.')