summaryrefslogtreecommitdiffstats
path: root/jjb/csit/include-raw-csit-vpp-functional-hw-tb2.sh
blob: 8fa41cb640f055f0a543a1014b94ec1c8b246040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# execute csit bootstrap script if it exists
if [ -e bootstrap-hw-tb2.sh ]
then
    # make sure that bootstrap.sh is executable
    chmod +x bootstrap-hw-tb2.sh
    # run the script
    ./bootstrap-hw-tb2.sh
else
    echo 'ERROR: No bootstrap-hw-tb2.sh found'
    exit 1
fi

# vim: ts=4 ts=4 sts=4 et :