Bob Mottram 8 years ago
parent
commit
ba1d0cc7a7
1 changed files with 9 additions and 9 deletions
  1. 9
    9
      src/freedombone-selector

+ 9
- 9
src/freedombone-selector View File

98
 	app_index=0
98
 	app_index=0
99
 	for a in "${APPS_AVAILABLE[@]}"
99
 	for a in "${APPS_AVAILABLE[@]}"
100
 	do
100
 	do
101
-		if [[ $APPS_INSTALLED[$app_index] == "0" ]]; then
101
+		if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
102
 			applist="$applist $n $a off"
102
 			applist="$applist $n $a off"
103
 		else
103
 		else
104
 			applist="$applist $n $a on"
104
 			applist="$applist $n $a on"
130
 	n=0
130
 	n=0
131
 	for a in "${APPS_INSTALLED[@]}"
131
 	for a in "${APPS_INSTALLED[@]}"
132
 	do
132
 	do
133
-		if [[ $APPS_INSTALLED[$app_index] == "1" ]]; then
134
-			if [[ $APPS_CHOSEN[$app_index] == "0" ]]; then
133
+		if [[ ${APPS_INSTALLED[$app_index]} == "1" ]]; then
134
+			if [[ ${APPS_CHOSEN[$app_index]} == "0" ]]; then
135
 				if [ ${n} -gt 0 ]; then
135
 				if [ ${n} -gt 0 ]; then
136
 					removals="$removals $APPS_AVAILABLE[$app_index]"
136
 					removals="$removals $APPS_AVAILABLE[$app_index]"
137
 				else
137
 				else
163
 	read_configuration
163
 	read_configuration
164
 	for a in "${APPS_AVAILABLE[@]}"
164
 	for a in "${APPS_AVAILABLE[@]}"
165
 	do
165
 	do
166
-		if [[ $APPS_INSTALLED[$app_index] == "1" ]]; then
167
-			if [[ $APPS_CHOSEN[$app_index] == "0" ]]; then
166
+		if [[ ${APPS_INSTALLED[$app_index]} == "1" ]]; then
167
+			if [[ ${APPS_CHOSEN[$app_index]} == "0" ]]; then
168
 				echo $"Removing application: ${a}"
168
 				echo $"Removing application: ${a}"
169
 				remove_${a}
169
 				remove_${a}
170
 				echo $"${a} was removed"
170
 				echo $"${a} was removed"
181
 	n=0
181
 	n=0
182
 	for a in "${APPS_INSTALLED[@]}"
182
 	for a in "${APPS_INSTALLED[@]}"
183
 	do
183
 	do
184
-		if [[ $APPS_INSTALLED[$app_index] == "0" ]]; then
185
-			if [[ $APPS_CHOSEN[$app_index] == "1" ]]; then
184
+		if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
185
+			if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
186
 				if [ ${n} -gt 0 ]; then
186
 				if [ ${n} -gt 0 ]; then
187
 					installs="$installs $APPS_AVAILABLE[$app_index]"
187
 					installs="$installs $APPS_AVAILABLE[$app_index]"
188
 				else
188
 				else
214
 	read_configuration
214
 	read_configuration
215
 	for a in "${APPS_AVAILABLE[@]}"
215
 	for a in "${APPS_AVAILABLE[@]}"
216
 	do
216
 	do
217
-		if [[ $APPS_INSTALLED[$app_index] == "0" ]]; then
218
-			if [[ $APPS_CHOSEN[$app_index] == "1" ]]; then
217
+		if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
218
+			if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
219
 				echo $"Installing application: ${a}"
219
 				echo $"Installing application: ${a}"
220
 				install_${a}
220
 				install_${a}
221
 				echo $"${a} was installed"
221
 				echo $"${a} was installed"