Commit 4a60e469 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

update CHANGELOG

parent 677498a5
......@@ -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)
......
......@@ -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
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment