Bob Mottram 8 년 전
부모
커밋
2712e1cedd
2개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      src/freedombone-utils-selector
  2. 3
    0
      src/freedombone-utils-setup

+ 2
- 2
src/freedombone-utils-selector 파일 보기

@@ -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
 

+ 3
- 0
src/freedombone-utils-setup 파일 보기

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