From 6abc4fcb2cb30498fc72a23635bf4a7d66cd7b23 Mon Sep 17 00:00:00 2001 From: Kelly Ledford Date: Thu, 25 Oct 2018 10:58:01 -0700 Subject: [PATCH] check_patch.py: Update link address Wiki reference link was out of date due to wiki update. Change-Id: None Tracked-On: None Tests: None -- comment change Signed-off-by: Kelly Ledford --- travisci/check_patch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/travisci/check_patch.py b/travisci/check_patch.py index 3e41bf0f..273c2bef 100755 --- a/travisci/check_patch.py +++ b/travisci/check_patch.py @@ -6,7 +6,8 @@ cmd = "git show origin/master..@ | clang-format-diff-3.9 -p 1 -style=file" diff = Popen(cmd, stdout=PIPE, shell=True).communicate()[0] if diff: - print("Code formatting is not according to style guidelines. Read https://github.com/intel/IA-Hardware-Composer/wiki/Contributions#coding_style") + print("Code formatting is not according to style guidelines. Read:\n" + "https://github.com/intel/IA-Hardware-Composer/wiki/Contributions#conformance-and-documentation-requirements") exit(1) # Run cppcheck, on fail return msg and exit code 1.