diff options
| author | Jeff Carr <[email protected]> | 2025-10-12 04:51:09 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-12 04:51:09 -0500 |
| commit | fa1cc5d28ea09cc70c6fbff7bfc65694624acd6d (patch) | |
| tree | 0255842972e7879a0c97a5924733924e69cdc870 | |
| parent | 2cbb97212954cb20c535dd70b32c86bbf8cb0f09 (diff) | |
oopsv0.0.20
| -rw-r--r-- | load.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ func ConfigLoad(pb proto.Message, argname string, protoname string) error { // todo: err handling func LoadCache(pb proto.Message, argname string, protoname string) error { cacheDir, _ := os.UserCacheDir() - fullpath := filepath.Join(cacheDir, ".config", argname) + fullpath := filepath.Join(cacheDir, argname) os.MkdirAll(fullpath, os.ModePerm) fullname := filepath.Join(fullpath, protoname+".pb") SetFilename(pb, fullname) |
