The README advertises macOS and Linux support, but openBrowser in main.go:69-74 only invokes the macOS open command. On Linux this silently fails (just logs a warning) and the browser never opens.
Should detect the OS and use xdg-open on Linux. Possibly fall back to xdg-open if open is unavailable (some Linux distros ship both).
Tracked from the live-reload implementation PR.
The README advertises macOS and Linux support, but
openBrowserinmain.go:69-74only invokes the macOSopencommand. On Linux this silently fails (just logs a warning) and the browser never opens.Should detect the OS and use
xdg-openon Linux. Possibly fall back toxdg-openifopenis unavailable (some Linux distros ship both).Tracked from the live-reload implementation PR.