The branch master has been updated
       via  ab0c22d2655c626cbc93835d9f3042be28efa64c (commit)
      from  38108eb94667a35f449685fc34832b1255311b13 (commit)


- Log -----------------------------------------------------------------
commit ab0c22d2655c626cbc93835d9f3042be28efa64c
Author: Rich Salz <[email protected]>
Date:   Mon Mar 26 15:16:51 2018 -0400

    Ignore CHANGES changes

-----------------------------------------------------------------------

Summary of changes:
 license/add-lastchance | 1 +
 license/get-summary    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/license/add-lastchance b/license/add-lastchance
index 5a21f03..e763b6e 100755
--- a/license/add-lastchance
+++ b/license/add-lastchance
@@ -72,6 +72,7 @@ while ( <> ) {
     open my $F, "git diff --numstat $pattern|"
        || die "Can't open git diff, $!\n";
     while ( <$F> ) {
+       next if /CHANGES/;
        $files++;
        next unless /(\d+)\s+(\d+)\s+(.*)/;
        $adds += int($1);
diff --git a/license/get-summary b/license/get-summary
index 46e0efd..3e0089c 100755
--- a/license/get-summary
+++ b/license/get-summary
@@ -26,6 +26,7 @@ while ( <$FH> ) {
     open my $F, "git diff --numstat $pattern|"
        || die "Can't open git diff, $!\n";
     while ( <$F> ) {
+       next if /CHANGES/;
        $files++;
        next unless /(\d+)\s+(\d+)\s+(.*)/;
        $adds += int($1);
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to