This commit is contained in:
Bob Mottram 2016-10-14 20:47:11 +01:00
parent b81252a159
commit 8977e5bc69
1 changed files with 3 additions and 0 deletions

View File

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