Skip to content

Commit 5a1340e

Browse files
committed
docs: update description
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 57de072 commit 5a1340e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/make/lib/git/notes.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ GIT_NOTES_DIR ?= $(ROOT_DIR)/docs/git-notes
2525
# RULES #
2626

2727
#/
28-
# Applies Git notes from the `docs/git-notes` directory.
28+
# Applies Git notes.
2929
#
3030
# ## Notes
3131
#
@@ -39,9 +39,9 @@ apply-git-notes:
3939
$(QUIET) for note in $(GIT_NOTES_DIR)/*.txt; do \
4040
if [ -f "$$note" ]; then \
4141
commit_hash=$$(basename "$$note" .txt); \
42-
git notes add -f -F "$$note" "$$commit_hash" || echo "Failed to apply note for commit $$commit_hash"; \
42+
$(GIT) notes add -f -F "$$note" "$$commit_hash" || echo "Failed to apply note for commit $$commit_hash"; \
4343
fi; \
4444
done
45-
$(QUIET) echo "Git notes application complete."
45+
$(QUIET) echo "Finished applying Git notes."
4646

4747
.PHONY: apply-git-notes

0 commit comments

Comments
 (0)