[ONOS-7346] ver.l

Change-Id: Ic96cbcbba3e951b3ee8d2cfb1cd5aa491bac5718
diff --git a/jjb/OnosSystemTest/check-style.sh b/jjb/OnosSystemTest/check-style.sh
index 79cbe30..4380f46 100644
--- a/jjb/OnosSystemTest/check-style.sh
+++ b/jjb/OnosSystemTest/check-style.sh
@@ -1,5 +1,11 @@
 #!/bin/bash
 
+cd $WORKSPACE
+rm -rf OnosSystemTest
+rm -f pep8Result.txt
+git clone https://gerrit.onosproject.org/OnosSystemTest; cd OnosSystemTest
+git review -d ${GERRIT_CHANGE_NUMBER}
+
 cd
 cd $WORKSPACE/OnosSystemTest/
 modifiedFiles=$(git diff-tree --no-commit-id --name-only -r HEAD | grep \.py) || modifiedFiles=""
diff --git a/jjb/OnosSystemTest/onos-test-freestyle.yaml b/jjb/OnosSystemTest/onos-test-freestyle.yaml
index 4e4c4c6..13baf14 100644
--- a/jjb/OnosSystemTest/onos-test-freestyle.yaml
+++ b/jjb/OnosSystemTest/onos-test-freestyle.yaml
@@ -211,10 +211,7 @@
          jenkins-ssh-credential: '{jenkins-ssh-credential}'
 
     builders:
-
-      - shell: !include-raw-escape: pre-check-style.sh
       - shell: !include-raw-escape: check-style.sh
-      - shell: !include-raw-escape: post-check-style.sh
 
     publishers:
       - warnings:
@@ -580,3 +577,4 @@
 
     jobs:
       - 'test-HA'
+
diff --git a/jjb/OnosSystemTest/post-check-style.sh b/jjb/OnosSystemTest/post-check-style.sh
deleted file mode 100644
index 64d623d..0000000
--- a/jjb/OnosSystemTest/post-check-style.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
-cat $WORKSPACE/pep8Result.txt
-rm -rf $WORKSPACE/OnosSystemTest/
\ No newline at end of file
diff --git a/jjb/OnosSystemTest/pre-check-style.sh b/jjb/OnosSystemTest/pre-check-style.sh
deleted file mode 100644
index f2d3924..0000000
--- a/jjb/OnosSystemTest/pre-check-style.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-cd $WORKSPACE
-rm -rf OnosSystemTest
-rm -f pep8Result.txt
-git clone https://gerrit.onosproject.org/OnosSystemTest; cd OnosSystemTest
-git review -d ${GERRIT_CHANGE_NUMBER}
\ No newline at end of file