From 8eaab4e4f18b15f9d7d00bb5eabd5a06c6b7fb9d Mon Sep 17 00:00:00 2001 From: udeved Date: Thu, 12 Nov 2015 23:31:44 +0100 Subject: [PATCH] [util] eval_edition: just distinguish between official and community --- lib/util.sh | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/lib/util.sh b/lib/util.sh index 0fca8cb..bd62a3c 100644 --- a/lib/util.sh +++ b/lib/util.sh @@ -521,21 +521,12 @@ load_set(){ eval_edition(){ eval "case $1 in - $(load_set 'official')) + $(load_set 'official')|$(load_set 'official-minimal')) iso_edition='official' ;; - $(load_set 'community')) + $(load_set 'community')|$(load_set 'community-minimal')) iso_edition='community' ;; - $(load_set 'official-minimal')) - iso_edition='official-minimal' - ;; - $(load_set 'community-minimal')) - iso_edition='community-minimal' - ;; - $(load_set 'community-openrc')) - iso_edition='community-openrc' - ;; esac" }