summaryrefslogtreecommitdiff
path: root/pre-commit.sh
blob: 0fffe95b1fe07c38deea56fa76090f48f425c169 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

if [ -x /usr/bin/yarn ]; then
    yarns/run-tests --env TESTS=fast
else
    echo "Please install cmdtest to use the pre-commit hook!"
    exit 1
fi