diff --git a/gui b/gui index fe6fb6e..0e96175 100755 --- a/gui +++ b/gui @@ -45,7 +45,7 @@ install() { echo -e "\nClose this window to exit." read enter #technically you could press Enter to exit. fi - ' "$title" + ' "$title" sleep 1 while ps -C manage &>/dev/null;do sleep 0.1; done } diff --git a/manage b/manage index d43d81b..502bb22 100755 --- a/manage +++ b/manage @@ -39,17 +39,28 @@ if [ "$1" == 'multi-install' ];then for app in $2 do "${DIRECTORY}/manage" install "$app" + if [ $? != 0 ];then + failed=1 + fi done IFS="$PREIFS" + if [ $failed == 1 ] && [ "$(echo "$1" | wc -l)" == 1 ];then + exit 1 + fi elif [ "$1" == 'multi-uninstall' ];then PREIFS="$IFS" IFS=$'\n' for app in $2 do "${DIRECTORY}/manage" uninstall "$app" + if [ $? != 0 ];then + failed=1 + fi done IFS="$PREIFS" - + if [ $failed == 1 ] && [ "$(echo "$1" | wc -l)" == 1 ];then + exit 1 + fi elif [ "$1" == 'install' ];then #INSTALL #for this operation, a program name must be specified.