Skip to content

Commit

Permalink
check_patch.py: Update link address
Browse files Browse the repository at this point in the history
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 <kelly.ledford@intel.com>
  • Loading branch information
stripes416 committed Nov 5, 2018
1 parent 83e70ac commit 6abc4fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion travisci/check_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6abc4fc

Please sign in to comment.