|
@@ -426,6 +426,8 @@ function install_apps_interactive {
|
426
|
426
|
function install_apps {
|
427
|
427
|
is_interactive=$1
|
428
|
428
|
|
|
429
|
+ APP_INSTALLED_SUCCESS=1
|
|
430
|
+
|
429
|
431
|
# interactive install configuration for each app
|
430
|
432
|
if [ ${is_interactive} ]; then
|
431
|
433
|
install_apps_interactive
|
|
@@ -461,6 +463,7 @@ function install_apps {
|
461
|
463
|
install_completed ${a}
|
462
|
464
|
echo $"${a} was installed from interactive"
|
463
|
465
|
else
|
|
466
|
+ APP_INSTALLED_SUCCESS=
|
464
|
467
|
echo $"${a} was not installed from interactive"
|
465
|
468
|
fi
|
466
|
469
|
fi
|
|
@@ -485,6 +488,7 @@ function install_apps {
|
485
|
488
|
install_completed ${a}
|
486
|
489
|
echo $"${a} was installed"
|
487
|
490
|
else
|
|
491
|
+ APP_INSTALLED_SUCCESS=
|
488
|
492
|
echo $"${a} was not installed"
|
489
|
493
|
fi
|
490
|
494
|
fi
|