aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/vCPE/scripts/v_brgemu_build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vnfs/vCPE/scripts/v_brgemu_build.sh')
-rw-r--r--vnfs/vCPE/scripts/v_brgemu_build.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/vnfs/vCPE/scripts/v_brgemu_build.sh b/vnfs/vCPE/scripts/v_brgemu_build.sh
index 072a5509..5701740e 100644
--- a/vnfs/vCPE/scripts/v_brgemu_build.sh
+++ b/vnfs/vCPE/scripts/v_brgemu_build.sh
@@ -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