summaryrefslogtreecommitdiffstats
path: root/bin/git/hooks/pre-commit
blob: d4edff8cd308d756b957bb3f9aaea661de947777 (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/git/tools/create_contributors.py
git add AUTHORS.md