summaryrefslogtreecommitdiffstats
path: root/.github/workflows/compliance/anonymize-license.pl
blob: 573eba677ca319a2b15030868895235a27c5e7cb (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl -pi

use warnings;
use strict;
use autodie qw(:all);

if (/^ ?(?:\w+ )?Copyright / || /^All rights reserved\.$/ || /^(?:The )?\S+ License(?: \(.+?\))?$/ || /^$/) {
    $_ = ""
}

s/Google Inc\./the copyright holder/g