pdnsmanager/utils/pre-commit.hook

19 lines
209 B
Plaintext
Raw Normal View History

#!/bin/bash
cd frontend
2018-03-21 17:30:24 +01:00
if ! npm run lint
then
echo "Frontend lint failed"
exit 1
2018-03-23 16:37:11 +01:00
fi
cd ..
2018-03-21 17:30:24 +01:00
2018-03-23 16:37:11 +01:00
cd backend/src
2018-03-21 17:30:24 +01:00
if ! composer run-script lint
then
echo "Backend lint failed"
exit 2
fi
2018-03-23 16:37:11 +01:00
cd ..
2018-03-21 17:30:24 +01:00
exit 0