Bob Mottram před 8 roky
rodič
revize
a5f8a7ed36
1 změnil soubory, kde provedl 0 přidání a 5 odebrání
  1. 0
    5
      src/freedombone-utils-selector

+ 0
- 5
src/freedombone-utils-selector Zobrazit soubor

409
     app_index=0
409
     app_index=0
410
     for a in "${APPS_AVAILABLE[@]}"
410
     for a in "${APPS_AVAILABLE[@]}"
411
     do
411
     do
412
-        echo -n "${a}"
413
         if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
412
         if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
414
-            echo -n $" not installed"
415
             if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
413
             if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
416
-                echo -n $" chosen"
417
                 # interactively obtain settings for this app
414
                 # interactively obtain settings for this app
418
                 if [[ $(function_exists install_interactive_${a}) == "1" ]]; then
415
                 if [[ $(function_exists install_interactive_${a}) == "1" ]]; then
419
-                    echo -n $" interactive"
420
                     install_interactive_${a}
416
                     install_interactive_${a}
421
                 fi
417
                 fi
422
             fi
418
             fi
423
         fi
419
         fi
424
-        echo ""
425
 
420
 
426
         app_index=$[app_index+1]
421
         app_index=$[app_index+1]
427
     done
422
     done