From 0e500cefdabd5609c961e16a5b97714d623312e5 Mon Sep 17 00:00:00 2001 From: Robsdedude Date: Thu, 30 Nov 2023 10:02:36 +0100 Subject: [PATCH] Adjust check-legal script --- bin/check-legal | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/check-legal b/bin/check-legal index 2fe9d4bb..d6dfd11d 100755 --- a/bin/check-legal +++ b/bin/check-legal @@ -10,9 +10,7 @@ function check_license { function check_copyright { - #YEAR=$(date +%Y) - YEAR=2021 # when this project was abandoned - find "${SRC}" -type d \( -path "${SRC}/vendor" \) -prune -o -name '*.py' -print0 | xargs -0 grep -L -e "Copyright.* 20[0-9][0-9]-${YEAR}" + find "${SRC}" -type d \( -path "${SRC}/vendor" \) -prune -o -name '*.py' -print0 | xargs -0 grep -L -e 'Copyright (c) "Neo4j"' }