We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de9d12 commit 52e967aCopy full SHA for 52e967a
update_copyright_headers.sh
@@ -10,6 +10,12 @@
10
current_year=$(date +'%Y')
11
echo Updating copyright headers in Java, Kotlin, and Groovy source code for year $current_year
12
13
+# Added/Modified this year and committed
14
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
15
sed -i '' -E "s/Copyright 2002-[0-9]{4}/Copyright 2002-$current_year/g" $file;
16
done
17
+
18
+# Added/Modified and staged but not yet committed
19
+for file in $(git --no-pager diff --name-only --diff-filter=AM --cached | egrep "^.+\.(java|kotlin|groovy)$" | uniq); do
20
+ sed -i '' -E "s/Copyright 2002-[0-9]{4}/Copyright 2002-$current_year/g" $file;
21
+done
0 commit comments