@@ -37,6 +37,11 @@ if [ -z "${NAME}" ] ; then
exit 1
fi
+if [ $# -lt 1 ] ; then
+ echo "A command is required." >&2
+ exit 1
+fi
+
RUN_SCRIPT=$(mktemp)
cat <<EOF > "${RUN_SCRIPT}"