Fixing syntax in vCPE scripts 61/93161/2
authorTomáš Levora <t.levora@partner.samsung.com>
Fri, 9 Aug 2019 08:24:31 +0000 (10:24 +0200)
committerMarco Platania <platania@research.att.com>
Sun, 11 Aug 2019 21:51:07 +0000 (21:51 +0000)
Issue-ID: INT-1199

Signed-off-by: Tomáš Levora <t.levora@partner.samsung.com>
Change-Id: I0444dba68fe8b9701e4e7a6055a1d6b9a0c600ff

vnfs/vCPE/scripts/v_bng_build.sh
vnfs/vCPE/scripts/v_brgemu_build.sh

index 5ec533b..46f6f90 100644 (file)
@@ -42,7 +42,7 @@ cdr2mask () {
     UNATTENDED='y' make install-dep
 
 # Check VPP build status
-    if [[$? -ne 0]]
+    if [[ $? -ne 0 ]]
     then
         echo $ERROR_MESSAGE 'Reason: VPP build failed' > /opt/script_status.txt
         exit
@@ -62,7 +62,7 @@ cdr2mask () {
     make V=0 PLATFORM=vpp TAG=vpp install-deb
 
 # Check vpp/build-root status
-    if [[$? -ne 0]]
+    if [[ $? -ne 0 ]]
     then
         echo $ERROR_MESSAGE 'Reason: vpp/build-root build failed' > /opt/script_status.txt
         exit
@@ -76,7 +76,7 @@ cdr2mask () {
     dpkg -i *.deb
 
 # Check VPP package installation status
-    if [[$? -ne 0]]
+    if [[ $? -ne 0 ]]
     then
         echo $ERROR_MESSAGE 'Reason: VPP package installation failed' > /opt/script_status.txt
         exit
index 072a550..5701740 100644 (file)
@@ -35,7 +35,7 @@ cdr2mask () {
     yes y | make install-dep
 
 # Check vpp build status
-    if [[$? -ne 0]]
+    if [[ $? -ne 0 ]]
     then
         echo $ERROR_MESSAGE 'Reason: VPP build failed' > /opt/script_status.txt
         exit
@@ -46,7 +46,7 @@ cdr2mask () {
     make V=0 PLATFORM=vpp TAG=vpp install-deb
 
 # Check vpp/build-root build status
-    if [[$? -ne 0]]
+    if [[ $? -ne 0 ]]
     then
         echo $ERROR_MESSAGE 'Reason: vpp/build-root build failed' > /opt/script_status.txt
         exit
@@ -56,7 +56,7 @@ cdr2mask () {
     dpkg -i *.deb
 
 # Check vpp package installation status
-    if [[$? -ne 0]]
+    if [[ $? -ne 0 ]]
     then
         echo $ERROR_MESSAGE 'Reason: VPP package installation failed' > /opt/script_status.txt
         exit
@@ -183,7 +183,7 @@ EOF
     mvn clean install
 
 # Check hc2vpp build status
-    if [[$? -ne 0]]
+    if [[ $? -ne 0 ]]
     then
         echo $ERROR_MESSAGE 'Reason: hc2vpp build failed' > /opt/script_status.txt
         exit