mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 11:39:03 +00:00
23 lines
540 B
Bash
23 lines
540 B
Bash
#!/bin/sh
|
|
|
|
# Runs a simple check before pushing. In particular, this checks
|
|
# if templates were regenerated and style is correct.
|
|
# Put this file to `.git/hooks/`.
|
|
|
|
echo "Running pre-push git hook."
|
|
|
|
# Runs check for common simple errors before pushing
|
|
if ! make templates_check &> /dev/null
|
|
then
|
|
echo >&2 "Templates not updated, run 'make templates'. Not pushing."
|
|
exit 1
|
|
fi
|
|
|
|
if ! make style &> /dev/null
|
|
then
|
|
echo >&2 "Style invalid, run style make commands. Not pushing."
|
|
exit 2
|
|
fi
|
|
|
|
echo "pre-push hook passed. Pushing."
|