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