You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default binaries path looks to not be detecting OS
krumware@PF-3842ND:~/code/privateerproj/cli$ ./privateer.exe list -a
2023/10/04 13:56:49 open \\wsl.localhost\Ubuntu\home\krumware\code\privateerproj\cli\config.yml: The system cannot find the file specified.
No raids present in the binaries path: C:\Users\colin/privateer/bin
The text was updated successfully, but these errors were encountered:
Right now my best guess is that this is something related to WSL when we're combining os and path 🤔 Perhaps it's getting the OS as windows in os.UserHomeDir, then it's seeing WSL for the path.Join
func defaultBinariesPath() string {
home, _ := os.UserHomeDir() // sue me
return path.Join(home, "privateer", "bin")
}
The default binaries path looks to not be detecting OS
The text was updated successfully, but these errors were encountered: