From 8977e5bc69f2b450308e51e9cb16f2e17b74bbb4 Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@robotics.uk.to>
Date: Fri, 14 Oct 2016 20:47:11 +0100
Subject: [PATCH] Echoes

---
 src/freedombone-utils-selector | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/freedombone-utils-selector b/src/freedombone-utils-selector
index fca363392..1fa4dfd28 100755
--- a/src/freedombone-utils-selector
+++ b/src/freedombone-utils-selector
@@ -384,6 +384,7 @@ function install_apps {
 
     # interactive install configuration for each app
     if [ ${is_interactive} ]; then
+        echo $"Interactive installer"
         app_index=0
         for a in "${APPS_AVAILABLE[@]}"
         do
@@ -391,12 +392,14 @@ function install_apps {
                 if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
                     # interactively obtain settings for this app
                     if [[ $(function_exists install_interactive_${a}) == "1" ]]; then
+                        echo $"Interactive settings for ${a}"
                         install_interactive_${a}
                     fi
                 fi
             fi
             app_index=$[app_index+1]
         done
+        echo $"Interactive settings complete"
     fi
 
     # now install the apps
-- 
GitLab