From 7bd2ac5d69ab751dd109a8bbf99c074ef7a7430e Mon Sep 17 00:00:00 2001 From: udeved Date: Fri, 3 Jul 2015 11:16:11 +0200 Subject: [PATCH] [util-mount] display selected os name --- lib/util-mount.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/util-mount.sh b/lib/util-mount.sh index 5fff1a7..5aa53f1 100644 --- a/lib/util-mount.sh +++ b/lib/util-mount.sh @@ -37,10 +37,12 @@ set_os(){ if [[ $selection -ne $index ]];then msg "Please enter your choice [0-$((count-1))] : " else + msg "Selected OS ${oslist[$selection]}" echo $selection fi done else + msg "Selected OS ${oslist[0]}" echo 0 fi }