forked from spacebar/account
Basically I removed all the warnings, removed some old APIs no longer in use, added cert verification to DB, im just cool like that.
14 lines
176 B
Shell
Executable file
14 lines
176 B
Shell
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
|