osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/36221?usp=email )
Change subject: lint: ignore LICENSE* and COPYING* ......................................................................
lint: ignore LICENSE* and COPYING*
Fixes: OS#6397 Change-Id: I859e9d7fdff5eeb86c24947031522a8123830f0c --- M lint/checkpatch/checkpatch_osmo.sh 1 file changed, 12 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/21/36221/1
diff --git a/lint/checkpatch/checkpatch_osmo.sh b/lint/checkpatch/checkpatch_osmo.sh index 9e422cf..f56464a 100755 --- a/lint/checkpatch/checkpatch_osmo.sh +++ b/lint/checkpatch/checkpatch_osmo.sh @@ -10,6 +10,8 @@ echo '--exclude ^debian/changelog$' # Patch files echo '--exclude .patch$' + # License files (OS#6397) + echo '--exclude ^(LICENSE|COPYING)' # Symlinks (no newline at end of file) find -type l -printf '--exclude ^%P$\n' }