add missing newlines to printf statements
This commit is contained in:
parent
ba7d862475
commit
0303f5df58
|
@ -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 ..."
|
||||
|
|
Loading…
Reference in New Issue