aboutsummaryrefslogtreecommitdiff
path: root/ci/common.bash
blob: 6b0a21a3ed9b3903de50333452da813cac4eefde (plain) (blame)
1
2
3
4
5
6
required_arg() {
    if [ -z "$1" ]; then
        echo "Required argument $2 missing"
        exit 1
    fi
}