File size: 331 Bytes
89ccda3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash
# exit when any command fails
set -e
# get where the script is located
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
bash $DIR/connected-to-warp.sh
# if BETA_FIX_HOST_CONNECTIVITY is set, run fix-host-connectivity.sh
if [ -n "$BETA_FIX_HOST_CONNECTIVITY" ]; then
bash $DIR/fix-host-connectivity.sh
fi
|