Skip to content

Commit a944b70

Browse files
committed
.githooks/pre-commit: Fix shebang and simplify verifies
Signed-off-by: Stephen Augustus <[email protected]>
1 parent 23ac4f6 commit a944b70

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.githooks/pre-commit

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# !/usr/bin/env bash
1+
#!/usr/bin/env bash
22

33
# Copyright 2020 The Kubernetes Authors.
44
#
@@ -20,4 +20,6 @@ set -o pipefail
2020

2121
REPO_ROOT="$(git rev-parse --show-toplevel)"
2222

23-
exec "${REPO_ROOT}/hack/verify.sh"
23+
exec "${REPO_ROOT}/hack/verify-kep-metadata.sh"
24+
exec "${REPO_ROOT}/hack/verify-toc.sh"
25+
exec "${REPO_ROOT}/hack/verify-spelling.sh"

0 commit comments

Comments
 (0)