Skip to content

Commit 7352060

Browse files
committed
Fixed default path for Windows.
1 parent d8bfc7e commit 7352060

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/installer/installer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func DefaultHomeLibPath() (string, error) {
8383
case "darwin":
8484
return filepath.Join(homeDir, "Library", "Application Support"), nil
8585
case "windows":
86-
return filepath.Join(homeDir, "AppData", "Local", "go-xla"), nil
86+
return filepath.Join(homeDir, "AppData", "Local"), nil
8787
default:
8888
return "", errors.Errorf("auto-install not supported on platform %s/%s", runtime.GOOS, runtime.GOARCH)
8989
}

0 commit comments

Comments
 (0)