From b633c70ee12ac2c40df0a44dc3234f7507446b40 Mon Sep 17 00:00:00 2001 From: beierlm Date: Tue, 5 May 2020 15:26:54 -0400 Subject: [PATCH] Additional file type exception Adding .ico as another image type that does not get checked for license compliance. Change-Id: I5cada23fca395ba78fcf05a647d2c426e764ec61 Signed-off-by: beierlm --- tools/license_scan.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/license_scan.sh b/tools/license_scan.sh index 71d283fb..5af31dff 100755 --- a/tools/license_scan.sh +++ b/tools/license_scan.sh @@ -19,7 +19,7 @@ # 1. Bug 722 : Jayant Madavi : JM00553988@techmahindra.com : Enhancement to use new fossology server. Had to change the variable name at # couple of places, while scanning the variable name was adding curl as a license. # 2. Bug 542 : Jayant Madavi, Mrityunjay Yadav : JM00553988@techmahindra.com : 24-jul-2019 : Enhancement to raise exit in case files modified or added does # not contain license. # 3. Bug 542 : Jayant Madavi, Mrityunjay Yadav : JM00553988@techmahindra.com :add exception list. for now as inLine. later need to create a variable for exception_list - + echo GERRIT BRANCH is $GERRIT_BRANCH dpkg -l wget &>/dev/null ||sudo apt-get install -y wget dpkg -l curl &>/dev/null ||sudo apt-get install -y curl @@ -29,7 +29,7 @@ dpkg -l curl &>/dev/null ||sudo apt-get install -y curl apache=0 nolicense=0 other=0 -exception_list="':(exclude)*.pdf' ':(exclude)*.png' ':(exclude)*.jpeg' ':(exclude)*.jpg' ':(exclude)*.gif' ':(exclude)*.json'" +exception_list="':(exclude)*.pdf' ':(exclude)*.png' ':(exclude)*.jpeg' ':(exclude)*.jpg' ':(exclude)*.gif' ':(exclude)*.json' ':(exclude)*.ico'" git fetch RE="FATAL: your file did not get passed through" -- 2.17.1