linphone-desktop/tools/private/pre-commit
2017-06-14 18:05:18 +02:00

15 lines
189 B
Bash
Executable file

#!/usr/bin/env bash
# Check QML files, quit on failure.
sh './tools/check_qml_syntax'
if [[ $? != 0 ]] ; then
exit 1
fi
printf '\n'
# Run unit tests.
sh './tools/test_qml'
exit $?