From 2673092b32c6c092087b6c8ed25b89544f95028f Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sun, 11 Jan 2026 16:10:47 -0500 Subject: [PATCH] refactor: make graph target cross-platform Replaced macOS-specific open command with file:// URL echo for cross-platform compatibility. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c7bf396..45742d2 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ explain: build graph: go tool pprof -raw -output=profile/cpu.raw profile/cpu.prof go tool pprof -svg profile/cpu.prof > profile/cpu.svg - open profile/cpu.svg + echo ">>> View at 'file://$(PWD)/profile/cpu.svg'" docs: echo ">>> View at 'http://localhost:6060/pkg/git.maximhutz.com/max/lambda/'"