update CHANGELOG
This commit is contained in:
parent
677498a55c
commit
4a60e469e9
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue