From cfc7715495e25bb49ceb85d8c9456fdbadf69677 Mon Sep 17 00:00:00 2001 From: Ross Smith II Date: Fri, 2 Aug 2013 10:55:53 -0700 Subject: [PATCH] fixed typo in vmware path on Windows XP, fixes #237/#238 --- builder/vmware/driver_workstation9_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/vmware/driver_workstation9_windows.go b/builder/vmware/driver_workstation9_windows.go index 5cd53c1d2..94b73e050 100644 --- a/builder/vmware/driver_workstation9_windows.go +++ b/builder/vmware/driver_workstation9_windows.go @@ -194,7 +194,7 @@ func findDataFile(file string) string { []string{os.Getenv("VMWARE_DATA"), ""}, []string{path, ""}, []string{os.Getenv("ProgramData"), "/VMWare"}, - []string{os.Getenv("ALLUSERSPROFILE"), "/VMWare"}, + []string{os.Getenv("ALLUSERSPROFILE"), "/Application Data/VMWare"}, } return findFile(file, paths)