From 073f5025518ea8bf18cbd64f45db06fab65de208 Mon Sep 17 00:00:00 2001 From: Martin Hierholzer <martin.hierholzer@desy.de> Date: Fri, 26 Aug 2022 16:19:16 +0200 Subject: [PATCH] project-template: allow non-DESY copyright owners Copyright by some files in ApplicationCore is owned by HZDR. --- cmake/check-coding-style.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/check-coding-style.sh b/cmake/check-coding-style.sh index 77e086e..26bb997 100755 --- a/cmake/check-coding-style.sh +++ b/cmake/check-coding-style.sh @@ -24,7 +24,7 @@ fi # check copyright/licence file header comment checkCopyrightComment() { SPDX_OK=1 - if [[ "`head -n1 $1`" != '// SPDX-FileCopyrightText: Deutsches Elektronen-Synchrotron DESY, MSK'* ]]; then + if [[ "`head -n1 $1`" != '// SPDX-FileCopyrightText: '* ]]; then SPDX_OK=0 fi if [[ "`head -n2 $1 | tail -n1`" != '// SPDX-License-Identifier: '* ]]; then -- GitLab