Skip to content

Commit

Permalink
fix: default writepath should be .privateer/logs (#31)
Browse files Browse the repository at this point in the history
Signed-off-by: Eddie Knight <[email protected]>
  • Loading branch information
eddie-knight authored Dec 14, 2024
1 parent 70f3f10 commit 78a2122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func defaultWritePath() string {
if err != nil {
return ""
}
return filepath.Join(home, "privateer", "logs", dirName)
return filepath.Join(home, ".privateer", "logs", dirName)
}

func (c *Config) SetConfig(name string, jsonFormat bool) {
Expand Down

0 comments on commit 78a2122

Please sign in to comment.