Bob Mottram 8 anni fa
parent
commit
2712e1cedd
2 ha cambiato i file con 5 aggiunte e 2 eliminazioni
  1. 2
    2
      src/freedombone-utils-selector
  2. 3
    0
      src/freedombone-utils-setup

+ 2
- 2
src/freedombone-utils-selector Vedi File

543
     app_index=0
543
     app_index=0
544
     for a in "${APPS_AVAILABLE[@]}"
544
     for a in "${APPS_AVAILABLE[@]}"
545
     do
545
     do
546
-        #if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
546
+        if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
547
             if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
547
             if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
548
                 if [ ${is_interactive} ]; then
548
                 if [ ${is_interactive} ]; then
549
                     # clears any removal indicator
549
                     # clears any removal indicator
621
                     fi
621
                     fi
622
                 fi
622
                 fi
623
             fi
623
             fi
624
-        #fi
624
+        fi
625
         app_index=$[app_index+1]
625
         app_index=$[app_index+1]
626
     done
626
     done
627
 
627
 

+ 3
- 0
src/freedombone-utils-setup Vedi File

852
         if [[ $? != 0 ]]; then
852
         if [[ $? != 0 ]]; then
853
             function_check app_is_installed
853
             function_check app_is_installed
854
             if [[ "$(app_is_installed $a)" == "1" ]]; then
854
             if [[ "$(app_is_installed $a)" == "1" ]]; then
855
+                echo ''
856
+                echo ''
857
+                echo $"Upgrading $a"
855
                 app_load_variables ${app_name}
858
                 app_load_variables ${app_name}
856
                 APPS_COMPLETED+=("${app_name}")
859
                 APPS_COMPLETED+=("${app_name}")
857
                 function_check upgrade_${app_name}
860
                 function_check upgrade_${app_name}