summaryrefslogtreecommitdiffstats
path: root/bin/git/hooks/pre-commit
blob: 7380232bab2f60e63f7bce4dbf887a472a48caf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# exit if any test fails
set -e

# update checksums
cd js
grunt js-unit
grunt cachebuster
cd ..

phpunit -c phpunit.xml
phpunit -c phpunit.integration.xml
git add appinfo/checksum.json

python3 bin/tools/generate_authors.py
git add AUTHORS.md