From 5909b11247afc6078968c4fb68cbdbf99497861d Mon Sep 17 00:00:00 2001 From: Arcane Engine Date: Fri, 11 Oct 2024 16:20:06 +0000 Subject: [PATCH] docs: Add comments to Makefile targets for improved readability and maintainability --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 402ab79..3151eff 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ +# Update the README file using a template and commit the changes readme: poetry run pilot task --direct -f prompts/README.md.jinja2 -o README.md sed -i '' 's/python -m cli.cli/pilot/g' README.md @@ -5,10 +6,14 @@ readme: git add prompts/README.md.jinja2 git commit -m "docs: update README.md" git push + +# Generate a Homebrew formula and copy it to the clipboard homebrew: # Generate a homebrew formula and copy it to the clipboard poetry homebrew-formula --quiet --template=homebrew_formula.rb --output=- | pbcopy + +# Install pre-commit hooks for the repository commit-hooks: # Install pre-commit hooks poetry install - poetry run pre-commit install \ No newline at end of file + poetry run pre-commit install