Skip to content

Commit

Permalink
style: add empty lines and change capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Jul 29, 2024
1 parent 71947eb commit dc626ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions tools/make/lib/git/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
include $(TOOLS_MAKE_LIB_DIR)/git/commitizen.mk
include $(TOOLS_MAKE_LIB_DIR)/git/notes.mk


# RULES #

#/
Expand Down
5 changes: 3 additions & 2 deletions tools/make/lib/git/notes.mk
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,21 @@
# Define the directory containing git notes:
GIT_NOTES_DIR ?= $(ROOT_DIR)/docs/git-notes


# RULES #

#/
# Applies Git notes from the `docs/git-notes` directory.
#
# ## Notes
#
# - This rule applies git notes where the file name (without the .txt extension) is the git commit hash and the content is the note.
# - This rule applies Git notes where the file name (without the .txt extension) is the Git commit hash and the content is the note.
#
# @example
# make apply-git-notes
#/
apply-git-notes:
$(QUIET) echo "Applying git notes..."
$(QUIET) echo "Applying Git notes..."
$(QUIET) for note in $(GIT_NOTES_DIR)/*.txt; do \
if [ -f "$$note" ]; then \
commit_hash=$$(basename "$$note" .txt); \
Expand Down

0 comments on commit dc626ba

Please sign in to comment.