echo newline before domain validation error

This commit is contained in:
Joe 2019-12-26 16:45:28 -06:00
parent d078f93dd8
commit 977637901a
No known key found for this signature in database
GPG Key ID: 8595A3F8F2CE1B74

View File

@ -22,7 +22,7 @@ DomainCheck() {
if [ "$result" = "pass" ]; then
return 0;
else
echo -e 'Error: Not a valid domain.\n'
echo -e '\nError: Not a valid domain.\n'
exit 1;
fi
}