Check title length

This commit is contained in:
Bob Mottram 2016-10-15 21:23:56 +01:00
parent c8f605a95d
commit 983cef44fa
1 changed files with 2 additions and 1 deletions

View File

@ -221,7 +221,8 @@ function interactive_site_details_with_title {
fi
fi
fi
if [ ${!SITE_TITLE} ]; then
site_title_str="${!SITE_TITLE}"
if [ ${#site_title_str} -gt 0 ]; then
if [ ${!SITE_DOMAIN_NAME} ]; then
SITE_DETAILS_COMPLETE="yes"
fi