Bob Mottram 8 years ago
parent
commit
cbd3ab2c91
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      src/freedombone-addremove

+ 4
- 4
src/freedombone-addremove View File

@@ -95,9 +95,9 @@ function remove_apps_interactive {
95 95
         if [[ ${APPS_INSTALLED[$app_index]} == "1" ]]; then
96 96
             if [[ ${APPS_CHOSEN[$app_index]} == "0" ]]; then
97 97
                 if [ ${n} -gt 0 ]; then
98
-                    removals="$removals $APPS_AVAILABLE[$app_index]"
98
+                    removals="$removals ${APPS_AVAILABLE[$app_index]}"
99 99
                 else
100
-                    removals="$APPS_AVAILABLE[$app_index]"
100
+                    removals="${APPS_AVAILABLE[$app_index]}"
101 101
                 fi
102 102
                 n=$[n+1]
103 103
             fi
@@ -136,9 +136,9 @@ function install_apps_interactive {
136 136
         if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
137 137
             if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
138 138
                 if [ ${n} -gt 0 ]; then
139
-                    installs="$installs $APPS_AVAILABLE[$app_index]"
139
+                    installs="$installs ${APPS_AVAILABLE[$app_index]}"
140 140
                 else
141
-                    installs="$APPS_AVAILABLE[$app_index]"
141
+                    installs="${APPS_AVAILABLE[$app_index]}"
142 142
                 fi
143 143
                 n=$[n+1]
144 144
             fi