mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-22 10:31:08 -04:00
Merge pull request #8906 from hashicorp/fix_8904
return error when LoadSnapshots turns up empty
This commit is contained in:
commit
fa49d2145d
1 changed files with 1 additions and 1 deletions
|
|
@ -325,7 +325,7 @@ func (d *VBox42Driver) LoadSnapshots(vmName string) (*VBoxSnapshot, error) {
|
|||
var rootNode *VBoxSnapshot
|
||||
stdoutString, err := d.VBoxManageWithOutput("snapshot", vmName, "list", "--machinereadable")
|
||||
if stdoutString == "This machine does not have any snapshots" {
|
||||
return rootNode, nil
|
||||
return rootNode, fmt.Errorf("VM %s does not have any snapshots.", vmName)
|
||||
}
|
||||
if nil != err {
|
||||
return nil, err
|
||||
|
|
|
|||
Loading…
Reference in a new issue