Apps not chosen

This commit is contained in:
Bob Mottram 2016-10-19 19:30:38 +01:00
parent b7de2bacec
commit 017fd581a0
1 changed files with 1 additions and 1 deletions

View File

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