[trybot-updater] Fix CL links

Bug: skia:6591
Change-Id: I918877328a2c7910351159d7beb24c186d829187
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/291042
Reviewed-by: Eric Boren <borenet@google.com>
Commit-Queue: Ravi Mistry <rmistry@google.com>
diff --git a/trybot_updater/go/trybot-updater/main.go b/trybot_updater/go/trybot-updater/main.go
index b6e3827..06c4dac 100644
--- a/trybot_updater/go/trybot-updater/main.go
+++ b/trybot_updater/go/trybot-updater/main.go
@@ -117,7 +117,7 @@
 	if err != nil {
 		return skerr.Fmt("Could not create Gerrit change: %s", err)
 	}
-	sklog.Infof("Uploaded change https://%s-review.googlesource.com/%d", project, ci.Issue)
+	sklog.Infof("Uploaded change https://skia-review.googlesource.com/c/%s/+/%d", project, ci.Issue)
 
 	if *submit {
 		// TODO(rmistry): Change reviewer to be the trooper after verifying that things work.
@@ -128,7 +128,7 @@
 		if err := g.Submit(ctx, ci); err != nil {
 			return abandonGerritChange(ctx, g, ci, err)
 		}
-		sklog.Infof("Submitted change https://%s-review.googlesource.com/%d", project, ci.Issue)
+		sklog.Infof("Submitted change https://skia-review.googlesource.com/c/%s/+/%d", project, ci.Issue)
 	}
 
 	return nil