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