diff --git a/CHANGELOG.md b/CHANGELOG.md index 108c134..2d2db84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## Change Log #### 1.6.0 *2015-1-* #### + * Fix issue with passing in custom admin user/pass * Adds ability to import a local database export. * Add ability to set up a WordPress Skeleton style installation * Add --blank paramater to create blank VVV site, with no WordPress diff --git a/vv b/vv index b364b8d..caa1727 100755 --- a/vv +++ b/vv @@ -603,13 +603,13 @@ site_creation_questions() { fi fi - if [ -z "$username" ]; then + if [[ -z "$username" ]]; then username="admin" fi - if [ -z "$password" ]; then + if [[ -z "$password" ]]; then password="password" fi - if [ -z "$email" ]; then + if [[ -z "$email" ]]; then email="admin@localhost.dev" fi }