From ce85e0102daffedd171c6e71f4aa6a871c1decd1 Mon Sep 17 00:00:00 2001 From: Anand Krishnamoorthi Date: Tue, 16 Dec 2025 09:54:40 -0600 Subject: [PATCH] fix: use debug build in pre-commit hook Signed-off-by: Anand Krishnamoorthi --- scripts/pre-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pre-commit b/scripts/pre-commit index 1949ba9..f497463 100755 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -6,7 +6,7 @@ set -eo pipefail if [ -f Cargo.toml ]; then # Ensure that all targets can be built. - cargo build -r --all-targets + cargo build --all-targets #Ensure that code is correctly formatted. cargo fmt --check || (echo "Run cargo fmt to fix formatting" && exit 1)