summaryrefslogtreecommitdiff
path: root/internal/stats/stats.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/stats/stats.go')
-rw-r--r--internal/stats/stats.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/stats/stats.go b/internal/stats/stats.go
index a98b2c5..7fa61b0 100644
--- a/internal/stats/stats.go
+++ b/internal/stats/stats.go
@@ -234,7 +234,7 @@ func CacheDir() (string, error) {
if err != nil {
return "", fmt.Errorf("cannot resolve home: %w", err)
}
- return filepath.Join(home, ".cache", "hexai"), nil
+ return filepath.Join(home, ".local", "hexai", "cache"), nil
}
// stringsTrim is a tiny helper to avoid importing strings everywhere here.