From a5f8a7ed3635df638420559ee75667544923b001 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 16 Oct 2016 21:05:11 +0100 Subject: [PATCH] Remove debugging --- src/freedombone-utils-selector | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/freedombone-utils-selector b/src/freedombone-utils-selector index f8b4a963..39f5dd53 100755 --- a/src/freedombone-utils-selector +++ b/src/freedombone-utils-selector @@ -409,19 +409,14 @@ function install_apps_interactive { app_index=0 for a in "${APPS_AVAILABLE[@]}" do - echo -n "${a}" if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then - echo -n $" not installed" if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then - echo -n $" chosen" # interactively obtain settings for this app if [[ $(function_exists install_interactive_${a}) == "1" ]]; then - echo -n $" interactive" install_interactive_${a} fi fi fi - echo "" app_index=$[app_index+1] done