Bob Mottram 8 年前
父节点
当前提交
8977e5bc69
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3
    0
      src/freedombone-utils-selector

+ 3
- 0
src/freedombone-utils-selector 查看文件

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