diff --git a/mm-scripts.sh b/mm-scripts.sh index ca119fc..57aab59 100755 --- a/mm-scripts.sh +++ b/mm-scripts.sh @@ -1112,13 +1112,13 @@ MMSETUP(){ IFS=,; SERVICES_CHECK=(${SERVICESCHECK}); unset IFS echo - echo -en "${idsCL[LightCyan]}Would you like to update media management services (Y/n)? ${idsCL[Default]}" + echo -en "${idsCL[LightCyan]}Would you like to update media management services (y/N)? ${idsCL[Default]}" read -n 1 choice case "$choice" in - [Nn]) tmp='';; - * ) for usrvc in "${UPDATE_SERVICES[@]}"; do + [Yy]) for usrvc in "${UPDATE_SERVICES[@]}"; do [ "${MM_UPDATE_REPO[${usrvc}]}" != "" ] && UPDATESERVICE ${usrvc} done;; + * ) tmp='';; esac CNFG=true