Update debian-v3.sh

This commit is contained in:
tteckster 2022-04-08 19:34:55 -04:00 committed by GitHub
parent 7424ca837b
commit 9efa1817ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -116,7 +116,8 @@ header_info
echo -e "${GN}Using ID ${BGN}$CT_ID${CL}"
echo -e "${YW}Enter CT Name, or Press [ENTER] for Default: $APP "
read CT_NAME
if [ -z $CT_NAME ]; then HN=$(echo ${APP,,} | tr -d ' ');
if [ -z $CT_NAME ]; then HN=$(echo ${APP,,} | tr -d ' ')
CT_NAME=$APP
else
HN=$(echo ${CT_NAME,,} | tr -d ' ')
fi;