[barometer] Add Jerma jobs
[releng.git] / jjb / ci_gate_security / anteater-report-to-gerrit.sh
index a749d1d..51a8ac4 100644 (file)
@@ -6,20 +6,23 @@ EXITSTATUS=0
 
 # This Log should always exist
 if [[ -e securityaudit.log ]] ; then
-    echo -e "\nposting security audit report to gerrit...\n"
 
     #check if log has errors
     if grep ERROR securityaudit.log; then
         EXITSTATUS=1
     fi
 
-    awk -F"ERROR - " '{print $2}' securityaudit.log | sed -e "s/\"/\\\\\"/g;s/\'/\\\\/g"> shortlog
+    grep 'ERROR' securityaudit.log | awk -F"ERROR - " '{ print $2 }' | tr -d "\'\"" > shortlog
 
-    ssh -p 29418 gerrit.opnfv.org \
-        "gerrit review -p $GERRIT_PROJECT \
-        -m \"$(cat shortlog)\" \
-        $GERRIT_PATCHSET_REVISION \
-        --notify NONE"
+    # Only report to Gerrit when there are errors to report.
+    if [[ -s shortlog ]]; then
+        echo -e "\nposting security audit report to gerrit...\n"
+        ssh -p 29418 gerrit.opnfv.org \
+            "gerrit review -p $GERRIT_PROJECT \
+            -m \"$(cat shortlog)\" \
+            $GERRIT_PATCHSET_REVISION \
+            --notify NONE"
+    fi
 
     exit $EXITSTATUS
 fi