Bob Mottram 8 years ago
parent
commit
8977e5bc69
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      src/freedombone-utils-selector

+ 3
- 0
src/freedombone-utils-selector View File

384
 
384
 
385
     # interactive install configuration for each app
385
     # interactive install configuration for each app
386
     if [ ${is_interactive} ]; then
386
     if [ ${is_interactive} ]; then
387
+        echo $"Interactive installer"
387
         app_index=0
388
         app_index=0
388
         for a in "${APPS_AVAILABLE[@]}"
389
         for a in "${APPS_AVAILABLE[@]}"
389
         do
390
         do
391
                 if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
392
                 if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
392
                     # interactively obtain settings for this app
393
                     # interactively obtain settings for this app
393
                     if [[ $(function_exists install_interactive_${a}) == "1" ]]; then
394
                     if [[ $(function_exists install_interactive_${a}) == "1" ]]; then
395
+                        echo $"Interactive settings for ${a}"
394
                         install_interactive_${a}
396
                         install_interactive_${a}
395
                     fi
397
                     fi
396
                 fi
398
                 fi
397
             fi
399
             fi
398
             app_index=$[app_index+1]
400
             app_index=$[app_index+1]
399
         done
401
         done
402
+        echo $"Interactive settings complete"
400
     fi
403
     fi
401
 
404
 
402
     # now install the apps
405
     # now install the apps