summaryrefslogtreecommitdiffstats
path: root/jjb/csit/include-raw-csit-vpp-functional-multilink.sh
blob: 065500f237c0e8830e0a0018a3b1fa23dc86d3a9 (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-multilink.sh ]
then
    # make sure that bootstrap.sh is executable
    chmod +x bootstrap-multilink.sh
    # run the script
    ./bootstrap-multilink.sh
else
    echo 'ERROR: No bootstrap-multilink.sh found'
    exit 1
fi

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