Skip to content

Commit 31eb9d4

Browse files
committed
fix: fix makefile tools install
Signed-off-by: yuluo-yx <[email protected]>
1 parent f4f1972 commit 31eb9d4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tools/make/lint.mk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,35 +29,35 @@ lint.yamllint: $(tools/yamllint)
2929
.PHONY: lint.markdown
3030
lint: lint.markdown
3131
lint-deps: $(tools/markdownlint)
32-
lint.markdown:
32+
lint.markdown: $(tools/markdownlint)
3333
@$(LOG_TARGET)
3434
$(tools/markdownlint) -c tools/linter/markdownlint/markdown_lint_config.json docs/site/content/**
3535

3636
.PHONY: lint.markdown.fix
3737
lint: lint.markdown.fix
3838
lint-deps: $(tools/markdownlint)
39-
lint.markdown.fix:
39+
lint.markdown.fix: $(tools/markdownlint)
4040
@$(LOG_TARGET)
4141
$(tools/markdownlint) -c tools/linter/markdownlint/markdown_lint_config.json --fix docs/site/content/**
4242

4343
.PHONY: lint.codespell
4444
lint: lint.codespell
4545
lint-deps: $(tools/codespell)
4646
lint.codespell: CODESPELL_SKIP := $(shell cat tools/linter/codespell/.codespell.skip | tr \\n ',')
47-
lint.codespell:
47+
lint.codespell: $(tools/codespell)
4848
@$(LOG_TARGET)
4949
$(tools/codespell) --skip $(CODESPELL_SKIP) --ignore-words tools/linter/codespell/.codespell.ignorewords --check-filenames
5050

5151
.PHONY: lint.checklinks
5252
lint: lint.checklinks
5353
lint-deps: $(tools/linkinator)
54-
lint.checklinks: # Check for broken links in the docs
54+
lint.checklinks: $(tools/linkinator) # Check for broken links in the docs
5555
@$(LOG_TARGET)
5656
$(tools/linkinator) docs/site/public/ -r --concurrency 25 --skip $(LINKINATOR_IGNORE)
5757

5858
.PHONY: lint.checklicense
5959
lint: lint.checklicense
6060
lint-deps: $(tools/skywalking-eyes)
61-
lint.checklicense: # Check for broken links in the docs
61+
lint.checklicense: $(tools/skywalking-eyes) # Check for broken links in the docs
6262
@$(LOG_TARGET)
6363
$(tools/skywalking-eyes) -c tools/linter/license/.licenserc.yaml header check

0 commit comments

Comments
 (0)