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

Commit

Permalink
Releasing 1.7.1 to fix defaults issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bradp committed Mar 16, 2015
1 parent fa8fec1 commit 4fb5e79
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
## Change Log

#### 1.7.1 - *2015-3-17* ####
* Fixed bug where default themes and plugins were sometimes removed when they shouldn't be.

#### 1.7.0 - *2015-3-15* ####
* Allow vv list to work with sites in subfolders
* Cleaned up and fix licensing terms and information
* Added experimental support for non vvv-providers, with the combination of -fp and -fsf
* Added the option to create a blank VVV site with a DB.
* Added the option to create a blank VVV site with a DB.
* Added ability to remove default themes and plugins when creating a new site.
* Added xip.io support to all created sites
* Clarified bluepring usage when setting up a site.
* Clarified deployment removal for site
* Sanitization & shellcheck fixes
* Sanitization & shellcheck fixes

#### 1.6.0 - *2015-2-2* ####
* Fix issue with passing in custom admin user/pass
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Variable VVV - The Best VVV Site Wizard

██ ██ ██ ██
░██ ░██░██ ░██ Variable VVV 1.7.0
░██ ░██░██ ░██ Variable VVV 1.7.1
░░██ ░██ ░░██ ░██
░░████ ░░████ The easiest way to set up
░░██ ░░██ WordPress sites with VVV!
Expand Down
6 changes: 3 additions & 3 deletions vv
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.1.6.0
#
version_number=1.7.0
version_number=1.7.1

if [[ ! -z $(which tput) ]]; then
normal=$(tput sgr0)
Expand Down Expand Up @@ -429,7 +429,7 @@ list_sites() {
printf " * %-30s %s %s\n" "${green}$filename${normal}" "${yellow}( $url )${normal}" "${cyan}[VVV default]${normal}"
fi
else
if [[ -f "$path"/"$sites_folder"/"$filename"/vvv-hosts ]]; then
if [[ -f "$path"/"$sites_folder"/"$filename"/vvv-hosts ]]; then
url=$(<"$path"/"$sites_folder"/"$filename"/vvv-hosts)
url=$(echo "$url" | sed -e 's/#.*$//' -e '/^$/d')
urls=$(echo "$url" | wc -l)
Expand All @@ -438,7 +438,7 @@ list_sites() {
fi
if [[ ! $clean = "true" ]]; then
printf " * %-30s %s\n" "${green}$filename${normal}" "${yellow}( $url )${normal}"

fi
fi
fi
Expand Down

0 comments on commit 4fb5e79

Please sign in to comment.