From 0f15de779527e2359f6f179fd44290b68725a74b Mon Sep 17 00:00:00 2001 From: Nikolay Borisov Date: Fri, 2 Jun 2017 17:50:46 +0300 Subject: [PATCH] common/rc: Fix wrong word in _require_group Make _require_group yield the correct error message when the requested group is not found. Signed-off-by: Nikolay Borisov Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 743df427..87e6ff08 100644 --- a/common/rc +++ b/common/rc @@ -2027,7 +2027,7 @@ _require_group() qa_group=$1 fi _cat_group | grep -q $qa_group - [ "$?" == "0" ] || _notrun "$qa_group user not defined." + [ "$?" == "0" ] || _notrun "$qa_group group not defined." } _filter_user_do() -- 2.39.5