Resolve the regular expression issue in license scan 09/7909/1
authormadavi <jm00553988@techmahindra.com>
Thu, 5 Sep 2019 08:35:14 +0000 (14:05 +0530)
committermadavi <jm00553988@techmahindra.com>
Thu, 5 Sep 2019 08:35:14 +0000 (14:05 +0530)
Change-Id: If0f9b53da16d1e291aee22d0df6adaae492afea4
Signed-off-by: madavi <jm00553988@techmahindra.com>
tools/license_scan.sh

index 7bfee6f..71d283f 100755 (executable)
@@ -29,12 +29,12 @@ 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'"
 git fetch
 
 RE="FATAL: your file did not get passed through"
 
-for file in $(git diff --name-only origin/$GERRIT_BRANCH -- . ':!*.pdf' ':!*.png' ':!*.jp[e]?g' ':!*.gif' ':!*.json'); do
+for file in $(echo ${exception_list} | xargs git diff --name-only origin/$GERRIT_BRANCH -- . ); do
     if [ -f $file ]; then
         if [ -s $file ]; then
             licnse=$(curl -s -X POST  -H 'Accept: text' -H 'Cache-Control: no-cache' -H 'Connection: keep-alive'  -H 'Content-Type: multipart/form-data'  -H 'cache-control: no-cache'  -F "file_input=@\"$file\""  -F 'showheader=1' https://fossology-osm.etsi.org/?mod=agent_nomos_once |grep "A one shot license analysis shows the following license(s) in file"|sed -n 's:.*<strong>\(.*\)</strong>.*:\1:p' |xargs)