ソースを参照

Apps not chosen

Bob Mottram 8 年 前
コミット
017fd581a0
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      src/freedombone-addremove

+ 1
- 1
src/freedombone-addremove ファイルの表示

@@ -70,7 +70,7 @@ function mark_unselected_apps_as_removed {
70 70
     app_index=0
71 71
     for app_name in "${APPS_AVAILABLE[@]}"
72 72
     do
73
-        if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
73
+        if [[ ${APPS_CHOSEN[$app_index]} == "0" ]]; then
74 74
             echo "_${app_name}_" >> $REMOVED_APPS_FILE
75 75
         fi
76 76
         app_index=$[app_index+1]