Skip to content

Commit

Permalink
More filepath.Join
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-mateen committed Oct 6, 2023
1 parent a1fb4dc commit 2d697a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tool/paths/paths_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ func init() {
programData = filepath.Join(os.Getenv("ALLUSERSPROFILE"), "Application Data")
}

AgentRootDir := programFiles + AgentDir
AgentConfigDir := programData + AgentDir
AgentRootDir := filepath.Join(programFiles, AgentDir)
AgentConfigDir := filepath.Join(programData, AgentDir)
JsonConfigPath = filepath.Join(AgentConfigDir, JSON)
JsonDirPath = filepath.Join(AgentConfigDir, JsonDir)
EnvConfigPath = filepath.Join(AgentConfigDir, ENV)
Expand Down

0 comments on commit 2d697a2

Please sign in to comment.