summaryrefslogtreecommitdiffstats
path: root/jjb/ci_gate_security
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2017-08-08 10:08:17 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-08 10:08:17 +0000
commit86fa506d9e6b37df0b79ac72fa2e78e1579430a2 (patch)
tree0f04322dbc51dc2ca81ff9453f0b926425a9bc48 /jjb/ci_gate_security
parent1c677a3571748100eff241dd167635331177dfb1 (diff)
parent66048e7c9681b0423d869dd3bcd37e73c66fd090 (diff)
Merge "Fix anteater job failed because of quatation marks"
Diffstat (limited to 'jjb/ci_gate_security')
-rw-r--r--jjb/ci_gate_security/anteater-report-to-gerrit.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/jjb/ci_gate_security/anteater-report-to-gerrit.sh b/jjb/ci_gate_security/anteater-report-to-gerrit.sh
index fc3018fb4..00a78ceba 100644
--- a/jjb/ci_gate_security/anteater-report-to-gerrit.sh
+++ b/jjb/ci_gate_security/anteater-report-to-gerrit.sh
@@ -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