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