aaa/lib/util.sh

9 lines
143 B
Bash
Raw Normal View History

2024-06-06 02:01:36 +02:00
#!/bin/sh
require_value() {
local name=$1; shift
if [ -z "$@" ]; then
echo "expected value for: $name"
exit 1
fi
}