tokei/ci/common.bash

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
110 B
Bash
Raw Normal View History

required_arg() {
if [ -z "$1" ]; then
echo "Required argument $2 missing"
exit 1
fi
}