[openssl-commits] [tools] master update
Rich Salz
rsalz at openssl.org
Mon Mar 26 19:16:54 UTC 2018
The branch master has been updated
via ab0c22d2655c626cbc93835d9f3042be28efa64c (commit)
from 38108eb94667a35f449685fc34832b1255311b13 (commit)
- Log -----------------------------------------------------------------
commit ab0c22d2655c626cbc93835d9f3042be28efa64c
Author: Rich Salz <rsalz at openssl.org>
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);
More information about the openssl-commits
mailing list