From 7822f120ca681760d83fa9166073b8fc4e6878f2 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sun, 22 Dec 2013 08:53:01 -0500 Subject: [PATCH] copyright script will now --follow files --- tools/copyright | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/copyright b/tools/copyright index e504109..9646037 100755 --- a/tools/copyright +++ b/tools/copyright @@ -84,7 +84,7 @@ for file in $files; do # determine copyrightable years from commit log and format as year1, year2, # ..., yearn (TODO: join consecutive years with dash) years=$( - git log --format='%aD %s' -- "$file" \ + git log --format='%aD %s' --follow -- "$file" \ | grep -vF '[copyright]' \ | cut -d' ' -f4 \ | sort -u \