#!/bin/bash SCRIPT_DIR=$(dirname $0) BASE_DIR=$(dirname ${SCRIPT_DIR}) SRC_DIR=$BASE_DIR ${SCRIPT_DIR}/check_license.sh -c ${BASE_DIR}/src -s ${BASE_DIR}/sql -c ${BASE_DIR}/test -t ${BASE_DIR}/test exit_apache=$? SRC_DIR=$BASE_DIR ${SCRIPT_DIR}/check_license.sh -e ${BASE_DIR}/tsl/src -u ${BASE_DIR}/tsl/test/sql -e ${BASE_DIR}/tsl/test/src exit_tsl=$? exit ${exit_apache} || ${exit_tsl}