summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmaint/update_copyright_years.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/maint/update_copyright_years.sh b/maint/update_copyright_years.sh
index 0c866fa13..4383e0b7a 100755
--- a/maint/update_copyright_years.sh
+++ b/maint/update_copyright_years.sh
@@ -115,7 +115,7 @@ process_file()
existing_notice_year=$(sed -n \
"/${existing_notice_re}/s//\\3/p" "$f")
# assume copyright notice is still relevant
- if [ "$last_commit_year" = "$copyright_year" ]; then
+ if [ "$last_commit_year" -le "$copyright_year" ]; then
debug "Does not need update, skipping: $f"
return
else