mirror of https://github.com/interlegis/sapl.git
Marcio Mazza
7 years ago
2 changed files with 26 additions and 27 deletions
@ -1,15 +1,8 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
|
|
||||
# aqui apenas reportamos, não impedimos o commit |
# verifica antes se houve modificação em algum arquivo models.py |
||||
./check_qa.sh |
if git diff --cached --name-status | grep -q '^M.*models\.py$'; then |
||||
if [ $? -eq 1 ] |
# se a checagem de migrations falhar impedimos o commit |
||||
then |
|
||||
RED='\033[0;31m' |
|
||||
echo |
|
||||
echo -e "${RED}#### POR FAVOR, CORRIJA OS PROBLEMAS APONTADOS!!! ####${NC}" |
|
||||
echo |
|
||||
fi |
|
||||
|
|
||||
# se os comandos a seguir falharem impedimos o commit |
|
||||
set -e |
set -e |
||||
./check_migrations.sh |
./check_migrations.sh |
||||
|
fi |
||||
|
Loading…
Reference in new issue