mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 16:24:45 -07:00
59 lines
1.7 KiB
Bash
Executable file
59 lines
1.7 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# fetch master branch
|
|
git fetch origin master
|
|
|
|
# unshallow if needed
|
|
echo "Finding merge base"
|
|
if ! git merge-base origin/master HEAD; then
|
|
echo "Could not find merge base, unshallowing repo"
|
|
git fetch --unshallow
|
|
fi
|
|
|
|
# Check formatting using format.sh
|
|
echo "Checking your code using format.sh..."
|
|
|
|
./format.sh --color-diff --cmake --shell --print-version --branch origin/master
|
|
err=$?
|
|
|
|
case $err in
|
|
1)
|
|
cat <<EOM
|
|
|
|
***********************************************************
|
|
*** ***
|
|
*** Your code does not comply with our style guide. ***
|
|
*** ***
|
|
*** Please correct it or run the "format.sh" script. ***
|
|
*** Then commit and push those changes to this branch. ***
|
|
*** Check our CONTRIBUTING.md file for more details. ***
|
|
*** ***
|
|
*** Thank you ❤️ ***
|
|
*** ***
|
|
***********************************************************
|
|
|
|
Exiting...
|
|
EOM
|
|
exit 2
|
|
;;
|
|
|
|
0)
|
|
cat <<EOM
|
|
|
|
***********************************************************
|
|
*** ***
|
|
*** Your code complies with our style guide! ***
|
|
*** ***
|
|
*** Awesome 👍 ***
|
|
*** ***
|
|
***********************************************************
|
|
|
|
Exiting...
|
|
EOM
|
|
exit 0
|
|
;;
|
|
|
|
*)
|
|
echo "Something went wrong in our formatting checks: format.sh returned $err" >&2
|
|
;;
|
|
esac
|