File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ GIT_NOTES_DIR ?= $(ROOT_DIR)/docs/git-notes
25
25
# RULES #
26
26
27
27
# /
28
- # Applies Git notes from the `docs/git-notes` directory .
28
+ # Applies Git notes.
29
29
#
30
30
# ## Notes
31
31
#
@@ -39,9 +39,9 @@ apply-git-notes:
39
39
$(QUIET ) for note in $( GIT_NOTES_DIR) /* .txt; do \
40
40
if [ -f " $$ note" ]; then \
41
41
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" ; \
43
43
fi ; \
44
44
done
45
- $(QUIET ) echo " Git notes application complete ."
45
+ $(QUIET ) echo " Finished applying Git notes ."
46
46
47
47
.PHONY : apply-git-notes
You can’t perform that action at this time.
0 commit comments