src: enable v8 deprecation warnings and fix them
[platform/upstream/nodejs.git] / tools / update-authors.sh
1 #!/bin/sh
2
3 git log --reverse --format='%aN <%aE>' | perl -we '
4
5 BEGIN {
6   %seen = (), @authors = ();
7 }
8
9 while (<>) {
10   next if $seen{$_};
11   next if /\@chromium.org/;
12   next if /<erik.corry\@gmail.com>/;
13   $seen{$_} = push @authors, $_;
14 }
15
16 END {
17   print "# Authors ordered by first contribution.\n";
18   print "\n", @authors, "\n";
19   print "# Generated by tools/update-authors.sh\n";
20 }
21
22 ' > AUTHORS