-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed
Labels
Milestone
Description
Running one of the browser visualization commands in pprof on windows (eg: weblist) produces the following error: (pprof) weblist exec: "/usr/bin/open": file does not exist This happens because it attempts to execute echo of the following programs (as seen at https://code.google.com/p/go/source/browse/src/cmd/pprof/internal/commands/commands.go#82) var browsers = []string{"chrome", "google-chrome", "firefox", "/usr/bin/open"} None of these commands work on Windows because neither Chrome nor Firefox update PATH to allow themselves to be run from the command line, and the last command is OS X specific to let the OS find the correct program.
Reactions are currently unavailable