Debugging echoes
This commit is contained in:
parent
ef471e69c8
commit
dd6b3b5d94
|
@ -390,15 +390,20 @@ function install_apps {
|
||||||
app_index=0
|
app_index=0
|
||||||
for a in "${APPS_AVAILABLE[@]}"
|
for a in "${APPS_AVAILABLE[@]}"
|
||||||
do
|
do
|
||||||
|
echo -n "${a}"
|
||||||
if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
|
if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
|
||||||
|
echo -n $" not installed"
|
||||||
if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
|
if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
|
||||||
|
echo -n $" chosen"
|
||||||
# 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}"
|
echo -n $" interactive"
|
||||||
install_interactive_${a}
|
install_interactive_${a}
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
app_index=$[app_index+1]
|
app_index=$[app_index+1]
|
||||||
done
|
done
|
||||||
echo $"Interactive settings complete"
|
echo $"Interactive settings complete"
|
||||||
|
|
Loading…
Reference in New Issue