Remove debugging

This commit is contained in:
Bob Mottram 2016-10-16 21:05:11 +01:00
parent 19225f4c7a
commit a5f8a7ed36
1 changed files with 0 additions and 5 deletions

View File

@ -409,19 +409,14 @@ function install_apps_interactive {
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 -n $" interactive"
install_interactive_${a}
fi
fi
fi
echo ""
app_index=$[app_index+1]
done