add missing newlines to printf statements

This commit is contained in:
Ray Elliott 2020-03-01 22:27:59 +00:00
parent ba7d862475
commit 0303f5df58
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ $_ssh_cmd_www 'sed -i "s/<?php$/<?php\n\ndefine( '\''WP_DEBUG'\'', true );\ndefi
$_ssh_cmd_www_cd "wp core install --url=$_wp_url --title=\"$_wp_title\" --admin_user=$_wp_admin_user --admin_password=\"$_wp_password\" --admin_email=$_wp_email --skip-email"
printf "Installing themes ..."
printf "\nInstalling themes ..."
if [ -n "$_wp_theme_active" ] ; then
$_ssh_cmd_www_cd "wp theme install $_wp_theme_active --activate"
fi
@ -58,7 +58,7 @@ if [ -n "$_wp_themes_additional" ] ; then
done
fi
printf "Installing plugins ..."
printf "\nInstalling plugins ..."
if [ -n "$_wp_plugins" ] ; then
for _plugin in $_wp_plugins ; do
echo " installing $_plugin ..."