mirror of
https://github.com/Cateners/tiny_computer.git
synced 2026-05-20 16:35:47 +08:00
Update code to v1.0.14 (10)
This commit is contained in:
19
android/extern/wolfssl/pre-push.sh
vendored
Normal file
19
android/extern/wolfssl/pre-push.sh
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
#
|
||||
# Our "pre-push" hook.
|
||||
|
||||
RESULT=0
|
||||
|
||||
if [ -d ./fips ];
|
||||
then
|
||||
echo "\n\nTesting with FIPS release code...\n\n"
|
||||
./fips-check.sh
|
||||
RESULT=$?
|
||||
[ $RESULT -ne 0 ] && echo -e "\n\nFIPS build test failed" && exit 1
|
||||
fi
|
||||
|
||||
[ $RESULT -ne 0 ] && echo "\nOops, your push failed\n" && exit 1
|
||||
|
||||
echo "\nPush tests passed!\n"
|
||||
exit 0
|
||||
Reference in New Issue
Block a user