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

update CHANGELOG

parent 677498a5
...@@ -11,6 +11,8 @@ BUG FIXES: ...@@ -11,6 +11,8 @@ BUG FIXES:
* builder/amazon: Fix spot instance cleanup to remove the correct request [GH-2327] * builder/amazon: Fix spot instance cleanup to remove the correct request [GH-2327]
* builder/amazon-instance: Fix issue with creating AMIs without specifying a * builder/amazon-instance: Fix issue with creating AMIs without specifying a
virtualization type [GH-2330] 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) ## 0.8.0 (June 23, 2015)
......
...@@ -396,9 +396,8 @@ func (d *ESX5Driver) upload(dst, src string) error { ...@@ -396,9 +396,8 @@ func (d *ESX5Driver) upload(dst, src string) error {
} }
func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool { func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool {
if (ctype == "none") { if ctype == "none" {
err := d.sh("stat", file) if err := d.sh("stat", file); err != nil {
if err != nil {
return false return false
} }
} else { } else {
...@@ -408,6 +407,7 @@ func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool ...@@ -408,6 +407,7 @@ func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool
return false return false
} }
} }
return true 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