mirror of
https://github.com/OMGeeky/tarpc.git
synced 2026-01-04 10:32:24 +01:00
13 lines
179 B
Bash
Executable File
13 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cargo test
|
|
CARGO_RESULT=$?
|
|
if [ "$CARGO_RESULT" != "0" ];
|
|
then
|
|
echo
|
|
echo "FAIL (pre-push): Can't push unless all tests pass. code = $CARGO_RESULT"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|