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