From 206a1af38b6212670ed75787042847434c90e22f Mon Sep 17 00:00:00 2001 From: Christopher Dow Date: Tue, 23 Apr 2013 07:00:12 -0700 Subject: [PATCH] Replaced last usage of missing 'die' function. --- src/scripts/sbt-launch-lib.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scripts/sbt-launch-lib.bash b/src/scripts/sbt-launch-lib.bash index 744f9289c..7355c5596 100644 --- a/src/scripts/sbt-launch-lib.bash +++ b/src/scripts/sbt-launch-lib.bash @@ -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 }