diff --git a/menu/pgbox/pgboxcommunity.sh b/menu/pgbox/pgboxcommunity.sh index 92a04a405d..0ac57d4d0a 100644 --- a/menu/pgbox/pgboxcommunity.sh +++ b/menu/pgbox/pgboxcommunity.sh @@ -137,10 +137,7 @@ $buildup EOF read -p '🌍 Type APP for QUEUE | Press [ENTER]: ' typed < /dev/tty -if [[ "$typed" == "deploy" && "$buildup" != "" ]]; then question2; fi -if [[ "$buildup" == "NONE" ]]; then - badinput1 -fi +if [[ "$typed" == "deploy" ]]; then question2; fi if [ "$typed" == "exit" ]; then exit; fi diff --git a/menu/pgbox/pgboxcore.sh b/menu/pgbox/pgboxcore.sh index 807a7ca957..51238bd626 100644 --- a/menu/pgbox/pgboxcore.sh +++ b/menu/pgbox/pgboxcore.sh @@ -135,11 +135,7 @@ $buildup EOF read -p '🌍 Type APP for QUEUE | Press [ENTER]: ' typed < /dev/tty -if [ "$typed" == "deploy" ] && [ "$buildup" == "" ]; then - echo "ERROR -- No APP Queued for Install!" -elif [ "$typed" == "deploy" ]; then - question2 -fi +if [[ "$typed" == "deploy" ]]; then question2; fi if [ "$typed" == "exit" ]; then exit; fi