X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/2e15741e0ecb3c08ada8abdc9887fc4c42fe05fe..b2e9fb7eed8cba6d68f319509097f6c0cd63ae7b:/bin/git-copyright-dates diff --git a/bin/git-copyright-dates b/bin/git-copyright-dates index 5eec713..180e7ba 100755 --- a/bin/git-copyright-dates +++ b/bin/git-copyright-dates @@ -2,7 +2,7 @@ my (%Y, %M); open my $fh, "-|", "git", "log", - "--date=format:%Y", "--pretty=format:%ad %aN" + "--date=format:%Y", "--pretty=format:%ad %aN", @ARGV or die "git log: $!"; while (<$fh>) { /(\d+)\s+(.*)$/ or die "wtf? $_";