X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/2e15741e0ecb3c08ada8abdc9887fc4c42fe05fe..f173a9c272a79ac77dc896ab31cf445c48363956:/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? $_";