Skip to content

Commit

Permalink
fix paths on Linux and Unix
Browse files Browse the repository at this point in the history
  • Loading branch information
ilius committed Feb 29, 2024
1 parent b476c28 commit bf38b7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/config/paths_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ func platformConfigDir() string {
if parent == "" {
parent = filepath.Join(os.Getenv(S_HOME), ".config")
}
return filepath.Join(parent, appinfo.APP_DESC)
return filepath.Join(parent, appinfo.APP_NAME)
}

func GetCacheDir() string {
return filepath.Join(os.Getenv(S_HOME), ".cache", appinfo.APP_DESC)
return filepath.Join(os.Getenv(S_HOME), ".cache", appinfo.APP_NAME)
}

0 comments on commit bf38b7a

Please sign in to comment.