Sha256: 0a923659b448210734413739eb47438ec0076e2cc534eed24f9a55754d37336a

Contents?: true

Size: 396 Bytes

Versions: 5

Compression:

Stored size: 396 Bytes

Contents

#!/bin/sh

git log --reverse --format='%aN <%aE>' | perl -we '

BEGIN {
  %seen = (), @authors = ();
}

while (<>) {
  next if $seen{$_};
  next if /\@chromium.org/;
  next if /<erik.corry\@gmail.com>/;
  $seen{$_} = push @authors, $_;
}

END {
  print "# Authors ordered by first contribution.\n";
  print "\n", @authors, "\n";
  print "# Generated by tools/update-authors.sh\n";
}

' > AUTHORS

Version data entries

5 entries across 4 versions & 1 rubygems

Version Path
node-compiler-0.9.1 vendor/node/tools/update-authors.sh
node-compiler-0.9.0 vendor/node-v7.2.1/tools/update-authors.sh
node-compiler-0.8.0 vendor/node-v7.2.0/tools/update-authors.sh
node-compiler-0.7.0 vendor/node-v6.9.1/tools/update-authors.sh
node-compiler-0.7.0 vendor/node-v7.1.0/tools/update-authors.sh