Skip to content
Snippets Groups Projects
Commit 2712e1ce authored by Bob Mottram's avatar Bob Mottram
Browse files

echo

parent 4fc45b54
No related branches found
No related tags found
No related merge requests found
...@@ -543,7 +543,7 @@ function install_apps { ...@@ -543,7 +543,7 @@ function install_apps {
app_index=0 app_index=0
for a in "${APPS_AVAILABLE[@]}" for a in "${APPS_AVAILABLE[@]}"
do do
#if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
if [ ${is_interactive} ]; then if [ ${is_interactive} ]; then
# clears any removal indicator # clears any removal indicator
...@@ -621,7 +621,7 @@ function install_apps { ...@@ -621,7 +621,7 @@ function install_apps {
fi fi
fi fi
fi fi
#fi fi
app_index=$[app_index+1] app_index=$[app_index+1]
done done
......
...@@ -852,6 +852,9 @@ function upgrade_apps { ...@@ -852,6 +852,9 @@ function upgrade_apps {
if [[ $? != 0 ]]; then if [[ $? != 0 ]]; then
function_check app_is_installed function_check app_is_installed
if [[ "$(app_is_installed $a)" == "1" ]]; then if [[ "$(app_is_installed $a)" == "1" ]]; then
echo ''
echo ''
echo $"Upgrading $a"
app_load_variables ${app_name} app_load_variables ${app_name}
APPS_COMPLETED+=("${app_name}") APPS_COMPLETED+=("${app_name}")
function_check upgrade_${app_name} function_check upgrade_${app_name}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment