about summary refs log tree commit diff
path: root/ops/besadii/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'ops/besadii/main.go')
-rw-r--r--ops/besadii/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/besadii/main.go b/ops/besadii/main.go
index 5c9baf6bf5..b382821bcc 100644
--- a/ops/besadii/main.go
+++ b/ops/besadii/main.go
@@ -160,7 +160,7 @@ func loadConfig() (*config, error) {
 
 // linkToChange creates the full link to a change's patchset in Gerrit
 func linkToChange(cfg *config, changeId, patchset string) string {
-	return path.Join(cfg.GerritUrl, "c", cfg.Repository, "+", changeId, patchset)
+	return fmt.Sprintf("%s/c/%s/+/%s/%s", cfg.GerritUrl, "c", cfg.Repository, "+", changeId, patchset)
 }
 
 // updateGerrit posts a comment on a Gerrit CL to indicate the current build status.