From dd6b3b5d94fef860aa0842fc13470b62e8658fb6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 15 Oct 2016 11:24:41 +0100 Subject: [PATCH] Debugging echoes --- src/freedombone-utils-selector | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/freedombone-utils-selector b/src/freedombone-utils-selector index 80031bee..16fb4122 100755 --- a/src/freedombone-utils-selector +++ b/src/freedombone-utils-selector @@ -390,15 +390,20 @@ function install_apps { 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 $"Interactive settings for ${a}" + echo -n $" interactive" install_interactive_${a} fi fi fi + echo "" + app_index=$[app_index+1] done echo $"Interactive settings complete"