Skip to content
This repository has been archived by the owner on Jun 30, 2020. It is now read-only.

Commit

Permalink
Fix issue with user/pass for creation
Browse files Browse the repository at this point in the history
  • Loading branch information
bradp committed Feb 1, 2015
1 parent 8564620 commit 6700bfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions vv
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 6700bfc

Please sign in to comment.