From f9011c43e69743648218bf677fb21d91f381dd15 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Wed, 13 Jul 2016 11:12:31 +0200 Subject: [PATCH] Exit cleanly when displaying categories --- include/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/functions b/include/functions index dfa71ce1..49aa0e12 100644 --- a/include/functions +++ b/include/functions @@ -2482,11 +2482,11 @@ if [ ! "${INCLUDEDIR}" = "" ]; then InsertSection "Available test categories" for I in `ls ${INCLUDEDIR}/tests_* | xargs -n 1 basename | sed 's/tests_//' | grep -v "custom.template"`; do - echo " - ${I}" + echo "${I}" done fi echo "" - exit 0 + ExitClean }