Skip to content

Commit

Permalink
Update store filename for new changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rabilrbl authored Sep 9, 2024
1 parent ad1fc63 commit 0d378a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/store/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var KVS *TomlStore
// Init initializes the TOML file, creates if not exist, otherwise reads and decodes to struct.
func Init() error {
KVS = &TomlStore{}
filename := filepath.Join(GetPathPrefix(), "store_v2.toml")
filename := filepath.Join(GetPathPrefix(), "store_v3.toml")

KVS.mu.Lock()
defer KVS.mu.Unlock()
Expand Down

0 comments on commit 0d378a5

Please sign in to comment.