mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 07:28:10 +00:00
git/hooks: do not suppress output
This commit is contained in:
parent
e30159c000
commit
7b5b58ccad
@ -6,13 +6,17 @@
|
||||
echo "Running pre-push git hook."
|
||||
|
||||
# Runs check for common simple errors before pushing
|
||||
if ! pipenv run make templates_check &> /dev/null
|
||||
echo ""
|
||||
echo "Checking templates"
|
||||
if ! pipenv run make templates_check
|
||||
then
|
||||
echo >&2 "Templates not updated, run 'pipenv run make templates'. Not pushing."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! pipenv run make style_check &> /dev/null
|
||||
echo ""
|
||||
echo "Checking style"
|
||||
if ! pipenv run make style_check
|
||||
then
|
||||
echo >&2 "Style invalid, run 'pipenv run make style'. Not pushing."
|
||||
exit 2
|
||||
|
Loading…
Reference in New Issue
Block a user