chore(tools/private/pre-commit): deal with new project folder name: linphone-desktop

This commit is contained in:
Ronan Abhamon 2017-01-25 16:09:59 +01:00
parent 635193249e
commit 6ecd56da6f

View file

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