update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2015-06-29 09:33:20 -07:00
parent 677498a55c
commit 4a60e469e9
2 changed files with 5 additions and 3 deletions

View File

@ -11,6 +11,8 @@ BUG FIXES:
* builder/amazon: Fix spot instance cleanup to remove the correct request [GH-2327]
* builder/amazon-instance: Fix issue with creating AMIs without specifying a
virtualization type [GH-2330]
* builder/vmware-iso: Setting `checksum_type` to `none` for ESX builds
now works [GH-2323]
## 0.8.0 (June 23, 2015)

View File

@ -396,9 +396,8 @@ func (d *ESX5Driver) upload(dst, src string) error {
}
func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool {
if (ctype == "none") {
err := d.sh("stat", file)
if err != nil {
if ctype == "none" {
if err := d.sh("stat", file); err != nil {
return false
}
} else {
@ -408,6 +407,7 @@ func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool
return false
}
}
return true
}