Skip to content

Commit 38d14ce

Browse files
committed
no skip in CI of shellcheck
Signed-off-by: JaredforReal <[email protected]>
1 parent 1167436 commit 38d14ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/make/pre-commit.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ precommit-install:
88

99
precommit-check: ## Run pre-commit checks on all relevant files
1010
precommit-check:
11-
@FILES=$$(find . -type f \( -name "*.go" -o -name "*.rs" -o -name "*.py" -o -name "*.js" -o -name "*.md" -o -name "*.yaml" -o -name "*.yml" \) \
11+
@FILES=$$(find . -type f \( -name "*.go" -o -name "*.rs" -o -name "*.py" -o -name "*.js" -o -name "*.sh" -o -name "*.md" -o -name "*.yaml" -o -name "*.yml" \) \
1212
! -path "./target/*" \
1313
! -path "./candle-binding/target/*" \
1414
! -path "./website/node_modules/*" \
@@ -24,7 +24,7 @@ precommit-check:
2424
echo "Running pre-commit on files: $$FILES"; \
2525
pre-commit run --files $$FILES; \
2626
else \
27-
echo "No Go, Rust, JavaScript, Markdown, Yaml, or Python files found to check"; \
27+
echo "No Go, Rust, JavaScript, Shell, Markdown, Yaml, or Python files found to check"; \
2828
fi
2929

3030
# Run pre-commit hooks in a Docker container,

0 commit comments

Comments
 (0)