Browse Source

Remove debugging

Bob Mottram 8 years ago
parent
commit
a5f8a7ed36
1 changed files with 0 additions and 5 deletions
  1. 0
    5
      src/freedombone-utils-selector

+ 0
- 5
src/freedombone-utils-selector View File

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