Skip to content

Commit 93e7f9e

Browse files
committed
Add trailing slash to URLs in build comments
1 parent 1a8f908 commit 93e7f9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

godoctopus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ def run(self) -> None:
473473
relative_path += "/"
474474
item["relative_path"] = relative_path
475475

476-
build_url = self.base_url + str(branch_dir.relative_to(dest_dir))
476+
build_url = self.base_url + str(branch_dir.relative_to(dest_dir)) + "/"
477477
status.build_url = build_url
478478
status.head_sha = branch.build.workflow_run["head_sha"]
479479
statuses.append(status)

0 commit comments

Comments
 (0)