From 9f48147624b31a7636e449c0e0469cffff1a21ff Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Tue, 17 May 2022 02:17:37 +0900 Subject: [PATCH] scripts: check_compliance: Fix broken links to Contribution Guidelines This commit fixes the broken links to the Contribution Guidelines in the Compliance Check script. Signed-off-by: Stephanos Ioannidis --- scripts/ci/check_compliance.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/ci/check_compliance.py b/scripts/ci/check_compliance.py index eb1658eea3148..3a0e890bbe732 100755 --- a/scripts/ci/check_compliance.py +++ b/scripts/ci/check_compliance.py @@ -192,7 +192,7 @@ class CheckPatch(ComplianceTest): """ name = "checkpatch" - doc = "See https://docs.zephyrproject.org/latest/contribute/#coding-style for more details." + doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#coding-style for more details." path_hint = "" def run(self): @@ -737,7 +737,7 @@ class Nits(ComplianceTest): already covered by e.g. checkpatch.pl and pylint. """ name = "Nits" - doc = "See https://docs.zephyrproject.org/latest/contribute/#coding-style for more details." + doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#coding-style for more details." path_hint = "" def run(self): @@ -835,7 +835,7 @@ class GitLint(ComplianceTest): """ name = "Gitlint" - doc = "See https://docs.zephyrproject.org/latest/contribute/#commit-guidelines for more details" + doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#commit-guidelines for more details" path_hint = "" def run(self): @@ -923,7 +923,7 @@ class Identity(ComplianceTest): Checks if Emails of author and signed-off messages are consistent. """ name = "Identity" - doc = "See https://docs.zephyrproject.org/latest/contribute/#commit-guidelines for more details" + doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#commit-guidelines for more details" # git rev-list and git log don't depend on the current (sub)directory # unless explicited path_hint = ""