builder/vmware: error message tweaking for Player driver

This commit is contained in:
Mitchell Hashimoto 2013-07-31 22:15:13 -07:00
parent 2775ada116
commit 69d6d8f1b6
1 changed files with 3 additions and 1 deletions

View File

@ -120,7 +120,9 @@ func (d *Player5LinuxDriver) Verify() error {
if err := d.findVdiskManager(); err != nil {
if err := d.findQemuImg(); err != nil {
return fmt.Errorf("Neither 'vmware-vdiskmanager', not 'qemu-img' found in path.")
return fmt.Errorf(
"Neither 'vmware-vdiskmanager', nor 'qemu-img' found in path.\n" +
"One of these is required to configure disks for VMware Player.")
}
}