From c1f0b5e8b077fb1f512dc4c216e06968b0aa9529 Mon Sep 17 00:00:00 2001 From: mboelen Date: Tue, 19 Apr 2016 18:01:48 +0200 Subject: [PATCH] Allow usage of quick=yes in profile --- include/profiles | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/profiles b/include/profiles index 502f19bc..3e8d5963 100644 --- a/include/profiles +++ b/include/profiles @@ -158,7 +158,8 @@ # Quick (no waiting for keypresses) quick) - QUICKMODE=`echo ${VALUE} | egrep "^(0|1)$"` || QUICKMODE=0 + QUICKMODE=0 + FIND=`echo "${VALUE}" | egrep "^(1|yes)"` && QUICKMODE=1 Debug "Quickmode set to ${QUICKMODE}" ;;