Merge "Prepare necessary CSIT jobs for VPP 1701 branch (CIMANAGE-19)"
[ci-management.git] / jjb / csit / include-raw-csit-vpp-functional-multilink.sh
1 #!/bin/bash
2
3 # execute csit bootstrap script if it exists
4 if [ -e bootstrap-multilink.sh ]
5 then
6     # make sure that bootstrap.sh is executable
7     chmod +x bootstrap-multilink.sh
8     # run the script
9     ./bootstrap-multilink.sh
10 else
11     echo 'ERROR: No bootstrap-multilink.sh found'
12     exit 1
13 fi
14
15 # vim: ts=4 ts=4 sts=4 et :