Skip to content

Commit d3a1d13

Browse files
committed
Update makefile
Signed-off-by: Tamal Saha <[email protected]>
1 parent 8c9ecde commit d3a1d13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ assets: hugo-tools
1717

1818
.PHONY: fmt
1919
fmt: hugo-tools
20-
hugo-tools fmt-frontmatter ./content
20+
$(HUGO_TOOLS) fmt-frontmatter ./content
2121

2222
.PHONY: tags
2323
tags: hugo-tools
24-
hugo-tools tag-stats ./content
24+
$(HUGO_TOOLS) tag-stats ./content
2525

2626
.PHONY: verify
2727
verify: fmt
28-
hugo-tools tag-stats ./content --invalid-only
28+
$(HUGO_TOOLS) tag-stats ./content --invalid-only
2929
@if !(git diff --exit-code HEAD); then \
3030
echo "files are out of date, run make fmt"; exit 1; \
3131
fi

0 commit comments

Comments
 (0)