From cfaa4ba89c7e2b99b9829d726a1c407cad753fc5 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 30 Nov 2022 15:16:17 +0100 Subject: [PATCH] Apply update_copyright_headers.sh to staged files as well --- update_copyright_headers.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/update_copyright_headers.sh b/update_copyright_headers.sh index 0f40cce2524..5ceb5ac73c6 100755 --- a/update_copyright_headers.sh +++ b/update_copyright_headers.sh @@ -10,6 +10,12 @@ current_year=$(date +'%Y') echo Updating copyright headers in Java, Kotlin, and Groovy source code for year $current_year +# Added/Modified this year and committed for file in $(git --no-pager diff --name-only --diff-filter=AM @{$current_year-01-01}..@{$current_year-12-31} | egrep "^.+\.(java|kotlin|groovy)$" | uniq); do sed -i '' -E "s/Copyright 2002-[0-9]{4}/Copyright 2002-$current_year/g" $file; done + +# Added/Modified and staged but not yet committed +for file in $(git --no-pager diff --name-only --diff-filter=AM --cached | egrep "^.+\.(java|kotlin|groovy)$" | uniq); do + sed -i '' -E "s/Copyright 2002-[0-9]{4}/Copyright 2002-$current_year/g" $file; +done