Skip to content

Commit

Permalink
chore: fix exit error pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
peeeuzin committed Mar 24, 2024
1 parent c3f69aa commit 1b59531
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .hooky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
# Run pre-commit hooks

set -c
set -o errexit
set -o nounset
set -o pipefail

rm -rf test_data
cargo test

exit 0

0 comments on commit 1b59531

Please sign in to comment.