We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 672d2ad + b806afc commit 6733cbdCopy full SHA for 6733cbd
.githooks/pre-commit
@@ -20,6 +20,13 @@ set -o pipefail
20
21
REPO_ROOT="$(git rev-parse --show-toplevel)"
22
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"
+scripts=(
+ "hack/verify-kep-metadata.sh"
+ "hack/verify-toc.sh"
26
+ "hack/verify-spelling.sh"
27
+)
28
+
29
+for s in "${scripts[@]}"; do
30
+ echo "Running $s..."
31
+ "${REPO_ROOT}/$s" || exit 1
32
+done
0 commit comments