Browse Source

Allow upgrades

Bob Mottram 8 years ago
parent
commit
4fc45b542a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/freedombone-utils-selector

+ 2
- 2
src/freedombone-utils-selector View 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