From 57124113e4a0237f5117b5bd37e1112503925f62 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Thu, 29 Sep 2016 17:29:41 +0000 Subject: [PATCH] ICU-12738 exclude LICENSE from BOM check X-SVN-Rev: 39397 --- tools/release/c/bomfix.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/release/c/bomfix.py b/tools/release/c/bomfix.py index 018d4eba20e..3bec985fc05 100644 --- a/tools/release/c/bomfix.py +++ b/tools/release/c/bomfix.py @@ -63,6 +63,10 @@ for ent in tree: noprops = noprops + 1 continue + if (fp == "./LICENSE"): + print "Skipping: %s" % fp + continue + type = props # ends with \n because of process -- 2.40.0