mirror of https://github.com/interlegis/sapl.git
Marcio Mazza
7 years ago
3 changed files with 36 additions and 7 deletions
@ -0,0 +1,5 @@ |
|||||
|
#!/bin/bash |
||||
|
|
||||
|
ln -s -f `pwd`/scripts/hooks/pre-commit .git/hooks/pre-commit |
||||
|
|
||||
|
|
@ -0,0 +1,15 @@ |
|||||
|
#!/bin/bash |
||||
|
|
||||
|
# aqui apenas reportamos, não impedimos o commit |
||||
|
./check_qa.sh |
||||
|
if [ $? -eq 1 ] |
||||
|
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 |
||||
|
./check_migrations.sh |
Loading…
Reference in new issue