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