From c7840966e2bdd1c57433ccefcea41e925b798046 Mon Sep 17 00:00:00 2001 From: Nick Popovic Date: Mon, 14 Jul 2025 00:42:07 -0400 Subject: [PATCH] Fix duplicate help text for build targets in Makefile (#4092) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b36c0603..bf8498cf 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ help: @echo "" @echo "Usage:" @echo " make install - Install npm dependencies" - @echo " make build - Build the entire project" - @echo " make build-all - Build the entire project" + @echo " make build - Build the main project" + @echo " make build-all - Build the main project and sandbox" @echo " make test - Run the test suite" @echo " make lint - Lint the code" @echo " make format - Format the code"