From 3a700414ca9d9e4a62997ba188068a9c8c859af4 Mon Sep 17 00:00:00 2001 From: Robert Heinzmann Date: Thu, 28 Jul 2016 10:42:58 +0200 Subject: [PATCH] Fix License check to work with licensed vmware player --- builder/vmware/common/driver_workstation_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/vmware/common/driver_workstation_unix.go b/builder/vmware/common/driver_workstation_unix.go index bf6ef53da..c4217d9be 100644 --- a/builder/vmware/common/driver_workstation_unix.go +++ b/builder/vmware/common/driver_workstation_unix.go @@ -15,7 +15,7 @@ import ( ) func workstationCheckLicense() error { - matches, err := filepath.Glob("/etc/vmware/license-*") + matches, err := filepath.Glob("/etc/vmware/license-ws-*") if err != nil { return fmt.Errorf("Error looking for VMware license: %s", err) }