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