From e8fdf0cf47e2f75cfab8fe51c0242f566b1684c8 Mon Sep 17 00:00:00 2001 From: Timur Harin Date: Mon, 20 May 2024 01:07:03 +0300 Subject: [PATCH] add check for Makefile --- steps/lint.sh | 2 +- tex/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/steps/lint.sh b/steps/lint.sh index a7eed854..d58725b5 100755 --- a/steps/lint.sh +++ b/steps/lint.sh @@ -65,7 +65,7 @@ while IFS= read -r file; do echo "⚠️ Copyright not found in file: $file" fi # avoid test-zone and unparseable folders -done < <(find "$LOCAL" \( -path "$LOCAL/fixtures/filters/unparseable" -prune \) -o \( -path "$LOCAL/test-zone" -prune \) -o -type f \( -name "*.sh" -o -name "*.py" -o -name "*.rb" -o -name "*.java" -o -name "*.xml" \) -print) +done < <(find "$LOCAL" \( -path "$LOCAL/fixtures/filters/unparseable" -prune \) -o \( -path "$LOCAL/test-zone" -prune \) -o -type f \( -name "*.sh" -o -name "*.py" -o -name "*.rb" -o -name "*.java" -o -name "*.xml" -o -name "Makefile" \) -print) if [[ "${copyright_check}" = "true" ]]; then exit 1 diff --git a/tex/Makefile b/tex/Makefile index 27213a68..f2189ad7 100644 --- a/tex/Makefile +++ b/tex/Makefile @@ -1,6 +1,6 @@ # The MIT License (MIT) # -# Copyright (c) 2020-2022 Yegor Bugayenko +# Copyright (c) 2020-2024 Yegor Bugayenko # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal