Merge "CSIT-682 Usage of make-verify for vpp-csit-verify jobs"
[ci-management.git] / jjb / csit / include-raw-csit-nsh_sfc-functional-virl.sh
1 #!/bin/bash
2 set -xeu -o pipefail
3
4 # execute nsh_sfc bootstrap script if it exists
5 if [ -e bootstrap-nsh_sfc-functional-virl.sh ]
6 then
7     # make sure that bootstrap-nsh_sfc-functional-virl.sh is executable
8     chmod +x bootstrap-nsh_sfc-functional-virl.sh
9     # run the script
10     ./bootstrap-nsh_sfc-functional-virl.sh
11 else
12     echo 'ERROR: No bootstrap-nsh_sfc-functional-virl.sh found'
13     exit 1
14 fi
15
16 # vim: ts=4 ts=4 sts=4 et :