tokei/ci/common.bash
Erin Power 2d2597837d
Create Ferris' Mean Bean Machine
Seperate project coming soon
2020-02-19 10:24:29 +01:00

7 lines
110 B
Bash

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