Skip to content

Commit 55a3420

Browse files
committed
fix make command warning
Signed-off-by: JaredforReal <[email protected]>
1 parent 271eef0 commit 55a3420

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

tools/make/envs.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
# = Environment Makefile, refer for other makefile =
33
# ====================== envs.mk ======================
44

5+
# CI environment flag (set by CI/CD systems like GitHub Actions)
6+
# Can be overridden: CI=true make build
7+
CI ?=
8+
59
# Container runtime (docker or podman)
610
CONTAINER_RUNTIME ?= docker
711

tools/make/linter.mk

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,6 @@
44

55
##@ Linter
66

7-
docs-lint: docs-install ## Lint documentation in website/
8-
@$(LOG_TARGET)
9-
cd website && npm run lint
10-
11-
docs-lint-fix: docs-install ## Auto-fix documentation lint issues in website/
12-
@$(LOG_TARGET)
13-
cd website && npm run lint:fix
14-
157
markdown-lint: ## Lint all markdown files in the project
168
@$(LOG_TARGET)
179
markdownlint -c tools/linter/markdown/markdownlint.yaml "**/*.md" \

0 commit comments

Comments
 (0)