diff options
| author | Nick Popovic <[email protected]> | 2025-07-14 00:42:07 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-14 04:42:07 +0000 |
| commit | c7840966e2bdd1c57433ccefcea41e925b798046 (patch) | |
| tree | 6af3ec79c67c21bda6ca66009fcc3be69fc1e963 | |
| parent | 3110e8f81049f24549cacbbdc85ab08fa4128ed4 (diff) | |
Fix duplicate help text for build targets in Makefile (#4092)
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |
