Replaced last usage of missing 'die' function.

This commit is contained in:
Christopher Dow 2013-04-23 07:00:12 -07:00
parent 3d19938968
commit 206a1af38b
1 changed files with 2 additions and 1 deletions

View File

@ -90,7 +90,8 @@ require_arg () {
local opt="$2"
local arg="$3"
if [[ -z "$arg" ]] || [[ "${arg:0:1}" == "-" ]]; then
die "$opt requires <$type> argument"
echo "$opt requires <$type> argument"
exit 1
fi
}