Merge "Fix anteater job failed because of quatation marks"
authorSerena Feng <feng.xiaowei@zte.com.cn>
Tue, 8 Aug 2017 10:08:17 +0000 (10:08 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Tue, 8 Aug 2017 10:08:17 +0000 (10:08 +0000)
jjb/ci_gate_security/anteater-report-to-gerrit.sh

index fc3018f..00a78ce 100644 (file)
@@ -12,14 +12,14 @@ if [[ -e securityaudit.log ]] ; then
     if grep ERROR securityaudit.log; then
         EXITSTATUS=1
     fi
-    
-    cat securityaudit.log  | awk -F"ERROR - " '{print $2}' > shortlog
-    
+
+    cat securityaudit.log  | awk -F"ERROR - " '{print $2}' | sed -e "s/\"/\\\\\"/g;s/\'/\\\\\'/g"> shortlog
+
     ssh -p 29418 gerrit.opnfv.org \
         "gerrit review -p $GERRIT_PROJECT \
         -m \"$(cat shortlog)\" \
         $GERRIT_PATCHSET_REVISION \
         --notify NONE"
-    
+
     exit $EXITSTATUS
 fi