summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/third_party/html5lib/flake8-run.sh
blob: d926494699b9b29c2d350c86cf8fe3e32336cf8e (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash -e

if [[ ! -x $(which flake8) ]]; then
  echo "fatal: flake8 not found on $PATH. Exiting."
  exit 1
fi

flake8 `dirname $0`
exit $?