bug 542 improvment to the code, license scan 07/7807/2
authormadavi <jm00553988@techmahindra.com>
Thu, 25 Jul 2019 06:02:57 +0000 (11:32 +0530)
committermadavi <jm00553988@techmahindra.com>
Thu, 25 Jul 2019 07:04:29 +0000 (12:34 +0530)
Change-Id: Ia2c8da12c8ea8e99510b9bb8a8d4d2624b68b0ec
Signed-off-by: madavi <jm00553988@techmahindra.com>
tools/license_scan.sh

index f7a4ab7..2c5fb4a 100755 (executable)
@@ -17,7 +17,8 @@
 
 # Change log:
 # 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.
+# 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. 
  
 echo GERRIT BRANCH is $GERRIT_BRANCH
 dpkg -l wget &>/dev/null ||sudo apt-get install -y wget
@@ -74,7 +75,8 @@ if [ $other -gt 0 ]; then
 fi
 
 if [ $nolicense -gt 0 ]; then
-    echo "WARNING: Unlicensed files found"
+    echo "FATAL: Unlicensed files found"
+       exit 2
 fi
 
 exit 0