diff --git a/metadata/storage.go b/metadata/storage.go index f0d0f4c..602d3da 100644 --- a/metadata/storage.go +++ b/metadata/storage.go @@ -28,7 +28,8 @@ func getPlatformStoragePath(filename string) string { cache, _ := os.UserCacheDir() return filepath.Join(cache, windowsDir, filename) default: - return filepath.Join(linuxDir, filename) + home, _ := os.UserHomeDir() + return filepath.Join(home, linuxDir, filename) } }