account/hooks/pre-commit
red binder 5a8e61c255
All checks were successful
Build and Test / account (push) Successful in 7m48s
A LOT of stuff
Basically I removed all the warnings, removed some old APIs no longer in use, added cert verification to DB, im just cool like that.
2026-04-27 16:37:54 +02:00

14 lines
176 B
Bash
Executable file

#!/bin/sh
echo "running cargo check..."
cargo check
STATUS=$?
if [ $STATUS -ne 0 ]; then
echo "cargo check failed, aborting"
exit 1
fi
echo "cargo check passed"
exit 0