tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

flake8-run.sh (145B)


      1 #!/bin/bash -e
      2 
      3 if [[ ! -x $(which flake8) ]]; then
      4  echo "fatal: flake8 not found on $PATH. Exiting."
      5  exit 1
      6 fi
      7 
      8 flake8 `dirname $0`
      9 exit $?