Commit 9cb802ca authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

Improve gerrit recipe_module example

The /a suffix in the hots URL is not necessary as the gerrit_util adds it by
default to authenticate. Having it hard-coded in the example can be misleading.

Bug: 685318
Change-Id: I333cd8b2aa9020aadfd186f2e18fbff0aa917681
Reviewed-on: https://chromium-review.googlesource.com/564611Reviewed-by: 's avatarAndrii Shyshkalov <tandrii@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
parent 79e897b0
......@@ -6,7 +6,7 @@
"RECIPE_PACKAGE_REPO[depot_tools]/gerrit_client.py",
"branch",
"--host",
"https://chromium-review.googlesource.com/a",
"https://chromium-review.googlesource.com",
"--project",
"v8/v8",
"--branch",
......@@ -37,7 +37,7 @@
"RECIPE_PACKAGE_REPO[depot_tools]/gerrit_client.py",
"branchinfo",
"--host",
"https://chromium-review.googlesource.com/a",
"https://chromium-review.googlesource.com",
"--project",
"v8/v8",
"--branch",
......@@ -65,7 +65,7 @@
"RECIPE_PACKAGE_REPO[depot_tools]/gerrit_client.py",
"changes",
"--host",
"https://chromium-review.googlesource.com/a",
"https://chromium-review.googlesource.com",
"--json_file",
"/path/to/tmp/json",
"--start",
......
......@@ -8,7 +8,7 @@ DEPS = [
def RunSteps(api):
host = 'https://chromium-review.googlesource.com/a'
host = 'https://chromium-review.googlesource.com'
project = 'v8/v8'
branch = 'test'
......
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